##// END OF EJS Templates
errors: stop passing non-strings to Abort's constructor...
errors: stop passing non-strings to Abort's constructor The next patch will change `Abort`'s constructor and `__bytes__` functions and they will start assuming that the first argument is the messages as `bytes`. Differential Revision: https://phab.mercurial-scm.org/D9178

File last commit:

r43238:86f39a89 default
r46273:a736ab68 default
Show More
obsmarker-common.sh
16 lines | 244 B | application/x-sh | BashLexer
/ tests / testlib / obsmarker-common.sh
Boris Feld
template: add predecessors template...
r32879 mkcommit() {
testlib: allow more argument to mkcommit...
r43238 name="$1"
shift
echo "$name" > "$name"
hg add "$name"
hg ci -m "$name" "$@"
Boris Feld
template: add predecessors template...
r32879 }
getid() {
hg log --hidden --template '{node}\n' --rev "$1"
}
cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF