##// END OF EJS Templates
sidedata: add a way of replacing an existing sidedata computer...
sidedata: add a way of replacing an existing sidedata computer This will be useful in a future patch to replace a sequential computer with a parallel computer. We only allow for explicit replacement, to force the users to think about overriding computers. Differential Revision: https://phab.mercurial-scm.org/D10358

File last commit:

r43238:86f39a89 default
r47846:81eb7091 default
Show More
obsmarker-common.sh
16 lines | 244 B | application/x-sh | BashLexer
mkcommit() {
name="$1"
shift
echo "$name" > "$name"
hg add "$name"
hg ci -m "$name" "$@"
}
getid() {
hg log --hidden --template '{node}\n' --rev "$1"
}
cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF