##// END OF EJS Templates
test-fetch: fix non-portable sed regex....
test-fetch: fix non-portable sed regex. (s/...\+/.../ appears to be a GNU-ism: this test broke on OS X and NetBSD. Changing \+ to * fixes it, although that is a slightly less strict regex.)

File last commit:

r4387:93a4e72b default
r9121:a85a3d39 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