##// END OF EJS Templates
make manifest friendlier...
make manifest friendlier switch to using context code ..which uses first parent by default show file hashes only with debug switch show permissions with verbose fix up tests

File last commit:

r2982:890e285c default
r3736:ad3d5b43 default
Show More
test-nested-repo
19 lines | 251 B | text/plain | TextLexer
Vadim Gelfer
support nested repositories....
r2061 #!/bin/sh
hg init a
cd a
hg init b
echo x > b/x
echo '# should print nothing'
hg st
echo '# should print ? b/x'
hg st b/x
hg add b/x
echo '# should print A b/x'
hg st
echo '# should forget b/x'
Vadim Gelfer
revert: require --all to revert all files.
r2982 hg revert --all
Vadim Gelfer
support nested repositories....
r2061 echo '# should print nothing'
hg st b