##// END OF EJS Templates
Show repo's revlog format on verify. Warn if some files use a different format.
Show repo's revlog format on verify. Warn if some files use a different format.

File last commit:

r1933:7544700f default
r2143:3053fc33 default
Show More
test-backwards-remove
12 lines | 201 B | text/plain | TextLexer
/ tests / test-backwards-remove
Thomas Arendsen Hein
Don't use 'set -x', fix exports, sed and hexdump usage for Solaris.
r800 #!/bin/sh
mpm@selenic.com
hg merge: fix time asymmetry bug with deleting files on update to past...
r383 hg init
echo This is file a1 > 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 "commit #0" -d "1000000 0"
mpm@selenic.com
hg merge: fix time asymmetry bug with deleting files on update to past...
r383 ls
echo This is file b1 > b
hg add b
Thomas Arendsen Hein
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero....
r1933 hg commit -m "commit #1" -d "1000000 0"
mpm@selenic.com
hg merge: fix time asymmetry bug with deleting files on update to past...
r383 hg co 0
# B should disappear
ls