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

r9041:6e5e5484 default
r10378:e1401c74 default
Show More
test-gpg
28 lines | 342 B | text/plain | TextLexer
Brendan Cully
gpg: add test
r8809 #!/bin/sh
"$TESTDIR/hghave" gpg || exit 80
cat <<EOF >> $HGRCPATH
[extensions]
gpg=
[gpg]
David Champion
test-gpg: suppress secure memory warning...
r9041 cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg
Brendan Cully
gpg: add test
r8809 EOF
hg init r
cd r
echo foo > foo
hg ci -Amfoo
echo '% no signatures'
hg sigs
echo '% hg sign 0'
hg sign 0
echo '% hg sigs'
hg sigs
echo '% hg sigcheck 0'
hg sigcheck 0