view tests/testlib/common.sh @ 50064:b54801fec664

dirstate-guard: remove the usage in `import` It is now redundant with the transaction spawning the same scope.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Tue, 14 Feb 2023 00:42:00 +0100
parents 685383486d0a
children
line wrap: on
line source

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