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