X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft7500-commit.sh;h=1c908f4d3966cb9a2769465652981bef831f312d;hb=6c41e97557d94df7085e3c0cff247305c9401968;hp=47096f9014a0f36251eeb643ea302555e9ddc4d5;hpb=82ca09090ef0615732a53e2d07414382ca8d1fe4;p=git.git 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 &&