view tests/testlib/common.sh @ 6185:74a61e0dc9da mercurial-5.2

test-compat: merge mercurial-5.3 into mercurial-5.2
author Anton Shestakov <av6@dwimlabs.net>
date Tue, 22 Feb 2022 17:34:31 +0300
parents b1a04ff0f99e
children
line wrap: on
line source

. $TESTDIR/testlib/pythonpath.sh

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]
glog = log -GT "{rev}:{node|short} {desc}\n ({bookmarks}) {phase} {instabilities}\n"
EOF