tests/testlib/common.sh
author Simon Sapin <simon.sapin@octobus.net>
Fri, 10 Dec 2021 14:27:00 +0100
changeset 48490 4a983b69e519
parent 46777 685383486d0a
permissions -rw-r--r--
rhg: Add support for ui.ignore and ui.ignore.* config This fixes some but not all failures in `tests/test-hgignore.t` when running with `rhg status` enabled. Differential Revision: https://phab.mercurial-scm.org/D11907

mkcommit() {
   name="$1"
   shift
   echo "$name" > "$name"
   hg add "$name"
   hg ci -m "$name" "$@"
}