summaryrefslogtreecommitdiff
path: root/t/t4014-format-patch.sh
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2013-01-03 16:16:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-01-03 17:01:38 (GMT)
commit5ee29aefac94d4ed11fc5101c89697f39057abb5 (patch)
tree5d3ed463fa858e2638497603af4513bd41a932ad /t/t4014-format-patch.sh
parent20b630aae924e35c24ee3d082362c36bee1c97b3 (diff)
downloadgit-5ee29aefac94d4ed11fc5101c89697f39057abb5.zip
git-5ee29aefac94d4ed11fc5101c89697f39057abb5.tar.gz
git-5ee29aefac94d4ed11fc5101c89697f39057abb5.tar.bz2
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-xt/t4014-format-patch.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index 7b536e0..8197c74 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