##// END OF EJS Templates
Show repo's revlog format on verify only if it doesn't match the default format....
Show repo's revlog format on verify only if it doesn't match the default format. This makes it easier to run the tests with different revlog formats.

File last commit:

r1933:7544700f default
r2152:57729c56 default
Show More
test-conflict
16 lines | 289 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"
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 HGMERGE=merge; export HGMERGE
mpm@selenic.com
options: kill -d for debug...
r591 hg up -m 1
mpm@selenic.com
merge3: fix argument order...
r346 hg id
Peter van Dijk
small solaris portability fixes from John Levon <levon@movementarian.org>
r1925 egrep -v ">>>|<<<" a
mpm@selenic.com
merge3: fix argument order...
r346 hg status