tests/testlib/obsmarker-common.sh
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 10 Feb 2022 15:27:58 -0800
changeset 48753 d9af7c1fb619
parent 42968 86f39a89b63e
permissions -rw-r--r--
simplemerge: let filemerge check for binary inputs This is similar to the previous patch, but here we put a specialized copy of `simplemerge._verifytext()` in the the `filemerge` module instead. Differential Revision: https://phab.mercurial-scm.org/D12147

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