test-lib.sh: introduce test_commit() and test_merge() helpers
commit008849689e04e774aa7b194cd690405761e2383a
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Tue, 27 Jan 2009 22:34:48 +0000 (27 23:34 +0100)
committerJunio C Hamano <gitster@pobox.com>
Thu, 29 Jan 2009 04:16:37 +0000 (28 20:16 -0800)
tree31aa195fc15170994979b4a4f347f5c28d73a26a
parent03af0870a0e6d551a31eb830d5c2682b82ae0ac6
test-lib.sh: introduce test_commit() and test_merge() helpers

Often we just need to add a commit with a given (short) name, that will
be tagged with the same name.  Now, relatively complicated graphs can be
constructed easily and in a clear fashion:

test_commit A &&
test_commit B &&
git checkout A &&
test_commit C &&
test_merge D B

will construct this graph:

A - B
  \   \
    C - D

For simplicity, files whose name is the lower case version of the commit
message (to avoid a warning about ambiguous names) will be committed, with
the corresponding commit messages as contents.

If you need to provide a different file/different contents, you can use
the more explicit form

test_commit $MESSAGE $FILENAME $CONTENTS

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/README
t/test-lib.sh