diff options
author | Boris Faure <billiob@gmail.com> | 2011-05-08 12:31:02 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-11 11:20:28 -0700 |
commit | 8b1ae678a33e2d1ccf3080977b692a59acad9b50 (patch) | |
tree | ac17ff9704b6f87743f804cebc4485cf11a04d66 /t/t7500-commit.sh | |
parent | Remove duplicated "is a" (diff) | |
download | tgif-8b1ae678a33e2d1ccf3080977b692a59acad9b50.tar.xz |
Do not strip empty lines / trailing spaces from a commit message template
Templates should be just that: A form that the user fills out, and forms
have blanks. If people are attached to not having extra whitespace in the
editor, they can simply clean up their templates.
Added test with editor adding even more whitespace.
Signed-off-by: Boris Faure <billiob@gmail.com>
Based-on-patch-by:Sebastian Schuberth <sschuberth@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7500-commit.sh')
-rwxr-xr-x | t/t7500-commit.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t7500-commit.sh b/t/t7500-commit.sh index bcdf0847d0..9ef00906cc 100755 --- a/t/t7500-commit.sh +++ b/t/t7500-commit.sh @@ -123,6 +123,20 @@ test_expect_success 'commit message from file should override template' ' commit_msg_is "standard input msg" ' +cat >"$TEMPLATE" <<\EOF + + +### template + +EOF +test_expect_success 'commit message from template with whitespace issue' ' + echo "content galore" >>foo && + git add foo && + GIT_EDITOR="$TEST_DIRECTORY"/t7500/add-whitespaced-content git commit \ + --template "$TEMPLATE" && + commit_msg_is "commit message" +' + test_expect_success 'using alternate GIT_INDEX_FILE (1)' ' cp .git/index saved-index && |