##// 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:

r7830:55bd03e2 default
r10378:e1401c74 default
Show More
test-identify
46 lines | 643 B | text/plain | TextLexer
Dirkjan Ochtman
identify: have consistent output for local repositories...
r7757 #!/bin/sh
Mads Kiilerich
test-identify: require no-outer-repo...
r7830 "$TESTDIR/hghave" no-outer-repo || exit 80
Dirkjan Ochtman
identify: have consistent output for local repositories...
r7757 echo % no repo
hg id
echo % create repo
hg init test
cd test
echo a > a
hg ci -Ama
echo % basic id usage
hg id
hg id --debug
hg id -q
hg id -v
echo % with options
hg id -r.
hg id -n
hg id -t
hg id -b
hg id -i
hg id -n -t -b -i
echo % with modifications
echo b > a
hg id -n -t -b -i
echo % other local repo
cd ..
hg -R test id
hg id test
echo % with remote http repo
cd test
hg serve -p $HGPORT1 -d --pid-file=hg.pid
cat hg.pid >> $DAEMON_PIDS
hg id http://localhost:$HGPORT1/
echo % remote with tags?
hg id -t http://localhost:$HGPORT1/
Dirkjan Ochtman
tests: fix for test-identify returning 255
r7759
true # ends with util.Abort -> returns 255