##// END OF EJS Templates
test-rename-merge1: make it easier to review, windows friendly...
Patrick Mezard -
r13537:37f487b9 default
parent child Browse files
Show More
@@ -131,27 +131,27 b' Check for issue2089'
131 131 $ hg init repo2089
132 132 $ cd repo2089
133 133
134 $ echo 0 > A
135 $ hg -q ci -Am 0
134 $ echo c0 > f1
135 $ hg ci -Aqm0
136 136
137 $ hg -q up -C null
138 $ echo 1 > A
139 $ hg -q ci -Am 1
137 $ hg up null -q
138 $ echo c1 > f1
139 $ hg ci -Aqm1
140 140
141 $ hg -q up -C 0
141 $ hg up 0 -q
142 142 $ hg merge 1 -q --tool internal:local
143 $ echo 2 > A
144 $ hg -q ci -m 2
143 $ echo c2 > f1
144 $ hg ci -qm2
145 145
146 $ hg -q up -C 1
147 $ hg mv A a
148 $ hg -q ci -Am 3
146 $ hg up 1 -q
147 $ hg mv f1 f2
148 $ hg ci -Aqm3
149 149
150 $ hg -q up -C 2
150 $ hg up 2 -q
151 151 $ hg merge 3
152 merging A and a to a
152 merging f1 and f2 to f2
153 153 0 files updated, 1 files merged, 0 files removed, 0 files unresolved
154 154 (branch merge, don't forget to commit)
155 155
156 $ cat a
157 2
156 $ cat f2
157 c2
General Comments 0
You need to be logged in to leave comments. Login now