##// END OF EJS Templates
Fix hgwebdir after 9858477ed74cce9dc8f4069f9453a1bda0e13ba1 broke it.
Fix hgwebdir after 9858477ed74cce9dc8f4069f9453a1bda0e13ba1 broke it.

File last commit:

r2982:890e285c default
r5083:f94dbc6c 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