##// END OF EJS Templates
Mention 'hg update' to switch branches in help for branch and branches.
Mention 'hg update' to switch branches in help for branch and branches.

File last commit:

r4387:93a4e72b default
r5999:d1fe1a4e default
Show More
test-conflict
15 lines | 244 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
merge3: fix argument order...
r346
hg init
echo "nothing" > a
hg add a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m ancestor -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 echo "something" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch1 -d "1000000 0"
mpm@selenic.com
merge3: fix argument order...
r346 hg co 0
echo "something else" > a
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m branch2 -d "1000000 0"
Vadim Gelfer
deprecate 'update -m'. use 'merge' instead.
r2283 hg merge 1
mpm@selenic.com
merge3: fix argument order...
r346 hg id
Alexis S. L. Carvalho
run-tests.py: pass -L/--label to simplemerge...
r4387 cat a
mpm@selenic.com
merge3: fix argument order...
r346 hg status