##// END OF EJS Templates
Merge with upstream
Merge with upstream

File last commit:

r1570:6a104941 default
r1679:675ca845 merge default
Show More
test-remove
17 lines | 193 B | text/plain | TextLexer
mpm@selenic.com
Add a simple remove test
r936 #!/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"
Benoit Boissinot
hg log -p should show file deletions
r1570 hg export 0
hg export 1
hg log -p -r 0
hg log -p -r 1
mpm@selenic.com
Add a simple remove test
r936
cd ..
hg clone a b