##// END OF EJS Templates
Merge with myself.
Merge with myself.

File last commit:

r936:b62d1e73 default
r1186:508c7d1b merge default
Show More
test-remove
13 lines | 139 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"
cd ..
hg clone a b