##// END OF EJS Templates
graft: do not try to skip rev derived from ancestor more than once (issue6024)...
graft: do not try to skip rev derived from ancestor more than once (issue6024) We check 'x in revs' in other cases, so let's do the same. The test case credits to Tom Prince.

File last commit:

r32879:1858fc23 default
r40692:3bc2e550 stable
Show More
obsmarker-common.sh
14 lines | 205 B | application/x-sh | BashLexer
/ tests / testlib / obsmarker-common.sh
Boris Feld
template: add predecessors template...
r32879 mkcommit() {
echo "$1" > "$1"
hg add "$1"
hg ci -m "$1"
}
getid() {
hg log --hidden --template '{node}\n' --rev "$1"
}
cat >> $HGRCPATH <<EOF
[alias]
debugobsolete=debugobsolete -d '0 0'
EOF