view tests/testlib/common.sh @ 6053:be2008649675

branching: preserve test changes on stable CORE-TEST-OUTPUT-UPDATE: 5ced12cfa41b CORE-TEST-OUTPUT-UPDATE: 5105a9975407
author Anton Shestakov <av6@dwimlabs.net>
date Tue, 12 Oct 2021 10:19:05 +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