diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-01-03 23:16:37 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-01-03 09:01:38 -0800 |
commit | 5ee29aefac94d4ed11fc5101c89697f39057abb5 (patch) | |
tree | 5d3ed463fa858e2638497603af4513bd41a932ad /t/t4014-format-patch.sh | |
parent | 20b630aae924e35c24ee3d082362c36bee1c97b3 (diff) | |
download | git-5ee29aefac94d4ed11fc5101c89697f39057abb5.tar.gz |
format-patch: pick up branch description when no ref is specified
We only try to get branch name in "format-patch origin" case or
similar and not "format-patch -22" where HEAD is automatically
added. Without correct branch name, branch description cannot be
added. Make sure we always get branch name.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4014-format-patch.sh')
-rwxr-xr-x | t/t4014-format-patch.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh index 7b536e0fd9..8197c74fe5 100755 --- a/t/t4014-format-patch.sh +++ b/t/t4014-format-patch.sh @@ -926,4 +926,11 @@ test_expect_success 'cover letter using branch description (5)' ' grep hello actual >/dev/null ' +test_expect_success 'cover letter using branch description (6)' ' + git checkout rebuild-1 && + test_config branch.rebuild-1.description hello && + git format-patch --stdout --cover-letter -2 >actual && + grep hello actual >/dev/null +' + test_done |