##// END OF EJS Templates
fix the cat command...
fix the cat command - improve localrepo.walk when passed a node - make the differents walk commands in commands.py accept a node - change commands.cat to walk over a revision - add a test

File last commit:

r1570:6a104941 default
r1582:63799b01 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