##// END OF EJS Templates
Fix a couple fencepost errors in hg log
Fix a couple fencepost errors in hg log

File last commit:

r936:b62d1e73 default
r1042:23f9d71a default
Show More
test-remove
13 lines | 139 B | text/plain | TextLexer
#!/bin/sh
hg init a
cd a
echo a > foo
hg add foo
hg commit -m 1 -d "0 0"
rm foo
hg remove foo
hg commit -m 2 -d "0 0"
cd ..
hg clone a b