##// END OF EJS Templates
manifestlog: also monitor `00manifest.n` when applicable...
manifestlog: also monitor `00manifest.n` when applicable This let the locarepo's file cache detect outdated nodemap docket and reload the manifestlog after `localrepo.invalidate` when applicable. The same problem than issue6554 could affect the Manifest too. Differential Revision: https://phab.mercurial-scm.org/D11483

File last commit:

r48733:0c92cd92 default
r48854:7970895a stable
Show More
library-infinitepush.sh
32 lines | 592 B | application/x-sh | BashLexer
/ tests / library-infinitepush.sh
Pulkit Goyal
infinitepush: move the extension to core from fb-hgext...
r37204 scratchnodes() {
for node in `find ../repo/.hg/scratchbranches/index/nodemap/* | sort`; do
echo ${node##*/} `cat $node`
done
}
scratchbookmarks() {
for bookmark in `find ../repo/.hg/scratchbranches/index/bookmarkmap/* -type f | sort`; do
echo "${bookmark##*/bookmarkmap/} `cat $bookmark`"
done
}
setupcommon() {
cat >> $HGRCPATH << EOF
[extensions]
infinitepush=
[ui]
Matt Harbison
tests: ensure `$PYTHON` is quoted for Windows...
r47858 ssh = "$PYTHON" "$TESTDIR/dummyssh"
Pulkit Goyal
infinitepush: move the extension to core from fb-hgext...
r37204 [infinitepush]
branchpattern=re:scratch/.*
EOF
}
setupserver() {
cat >> .hg/hgrc << EOF
[infinitepush]
server=yes
indextype=disk
storetype=disk
reponame=babar
EOF
}