Skip to content
Snippets Groups Projects
Commit 86f39a89b63e authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

testlib: allow more argument to mkcommit

This is simple and handy. See next changesets for usage.
parent 3609ea82b971
No related branches found
No related tags found
No related merge requests found
mkcommit() {
echo "$1" > "$1"
hg add "$1"
hg ci -m "$1"
name="$1"
shift
echo "$name" > "$name"
hg add "$name"
hg ci -m "$name" "$@"
}
getid() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment