summaryrefslogtreecommitdiff
path: root/t/t4014-format-patch.sh
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2016-09-20 04:23:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-09-21 15:58:10 (GMT)
commit68e83a5b8277adfc6f8a307bc2454bc6723717f4 (patch)
treec0271f6269ff3e4706e88abcf3ae8d45ea4a5498 /t/t4014-format-patch.sh
parent6ebdac1bab966b720d776aa43ca188fe378b1f4b (diff)
downloadgit-68e83a5b8277adfc6f8a307bc2454bc6723717f4.zip
git-68e83a5b8277adfc6f8a307bc2454bc6723717f4.tar.gz
git-68e83a5b8277adfc6f8a307bc2454bc6723717f4.tar.bz2
format-patch: add "--rfc" for the common case of [RFC PATCH]
Add an alias for --subject-prefix='RFC PATCH', which is used commonly in some development communities to deserve such a short-hand. Signed-off-by: Josh Triplett <josh@joshtriplett.org> Reviewed-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4014-format-patch.sh')
-rwxr-xr-xt/t4014-format-patch.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t4014-format-patch.sh b/t/t4014-format-patch.sh
index b0579dd..ed4d3c2 100755
--- a/t/t4014-format-patch.sh
+++ b/t/t4014-format-patch.sh
@@ -1073,6 +1073,15 @@ test_expect_success 'empty subject prefix does not have extra space' '
test_cmp expect actual
'
+test_expect_success '--rfc' '
+ cat >expect <<-\EOF &&
+ Subject: [RFC PATCH 1/1] header with . in it
+ EOF
+ git format-patch -n -1 --stdout --rfc >patch &&
+ grep ^Subject: patch >actual &&
+ test_cmp expect actual
+'
+
test_expect_success '--from=ident notices bogus ident' '
test_must_fail git format-patch -1 --stdout --from=foo >patch
'