tests/testlib/common.sh
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 20 May 2022 14:27:46 +0200
changeset 49228 b909dd35d9ab
parent 46764 685383486d0a
permissions -rw-r--r--
deltas: add a debug-delta-find command to analyse delta search See command documentation for details. For some reason, pytype is confused by our usage of None/deltainfo variable, so I had to quiet it.

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