aboutsummaryrefslogtreecommitdiff
path: root/t/t7500-commit.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-13 11:03:08 -0700
committerJunio C Hamano <gitster@pobox.com>2011-05-13 11:03:08 -0700
commite4ae6efb78ca7d2ff16575f841b1781b96a7582c (patch)
tree13a3465c8d49a740846ac291d60486465d20a3a3 /t/t7500-commit.sh
parentd6ad4ff1202bd79f6470e8699bbd16d6ceb6ae98 (diff)
parent8b1ae678a33e2d1ccf3080977b692a59acad9b50 (diff)
downloadgit-e4ae6efb78ca7d2ff16575f841b1781b96a7582c.tar.gz
git-e4ae6efb78ca7d2ff16575f841b1781b96a7582c.tar.xz
Merge branch 'bf/commit-template-no-cleanup'
* bf/commit-template-no-cleanup: Do not strip empty lines / trailing spaces from a commit message template
Diffstat (limited to 't/t7500-commit.sh')
-rwxr-xr-xt/t7500-commit.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/t/t7500-commit.sh b/t/t7500-commit.sh
index 47096f901..1c908f4d3 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 &&