##// END OF EJS Templates
subrepo: change default path in hgrc of subrepo after cloning...
subrepo: change default path in hgrc of subrepo after cloning Previous behavior was to put in the cloned subrepos the path found in the original main repo. However it isn't valid for relative path and it seems more logical to reference instead the subrepos working copy path of the original main repo.

File last commit:

r6344:ffeb926d default
r10378:e1401c74 default
Show More
test-rebuildstate
19 lines | 246 B | text/plain | TextLexer
/ tests / test-rebuildstate
Alexis S. L. Carvalho
dirstate: fix rebuild; add a test...
r5065 #!/bin/sh
# basic test for hg debugrebuildstate
hg init repo
cd repo
touch foo bar
hg ci -Am 'add foo bar'
touch baz
hg add baz
hg rm bar
Matt Mackall
tests: make test-rebuildstate repeatable
r6344 hg debugrebuildstate
echo '% state dump after'
Alexis S. L. Carvalho
debugstate: add --nodates...
r6296 hg debugstate --nodates | sort
Alexis S. L. Carvalho
dirstate: fix rebuild; add a test...
r5065 echo '% status'
hg st -A