summaryrefslogtreecommitdiff
path: root/git-rebase--am.sh
diff options
context:
space:
mode:
authorFelipe Contreras <felipe.contreras@gmail.com>2013-04-14 22:27:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-15 03:01:07 (GMT)
commit0597ffa5ecff1b83f384357ab88afaf21838caa2 (patch)
tree7b87e05ecb6683f859d5946e08bfe0ef5f0a446c /git-rebase--am.sh
parentd7ddad012b1badaf96075e880d546ef3525f23ff (diff)
downloadgit-0597ffa5ecff1b83f384357ab88afaf21838caa2.zip
git-0597ffa5ecff1b83f384357ab88afaf21838caa2.tar.gz
git-0597ffa5ecff1b83f384357ab88afaf21838caa2.tar.bz2
rebase-am: explicitly disable cover-letter
If the user has a cover-letter configuration set to anything other than 'false', 'git format-patch' may generate a cover letter, which has no place in "format-patch | am" pipeline. The internal invocation of format-patch must explicitly override the configuration from the command line, just like --src-prefix and other options already do. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase--am.sh')
-rw-r--r--git-rebase--am.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-rebase--am.sh b/git-rebase--am.sh
index 97f31dc..f84854f 100644
--- a/git-rebase--am.sh
+++ b/git-rebase--am.sh
@@ -31,8 +31,8 @@ else
rm -f "$GIT_DIR/rebased-patches"
git format-patch -k --stdout --full-index --ignore-if-in-upstream \
- --src-prefix=a/ --dst-prefix=b/ \
- --no-renames $root_flag "$revisions" >"$GIT_DIR/rebased-patches"
+ --src-prefix=a/ --dst-prefix=b/ --no-renames --no-cover-letter \
+ $root_flag "$revisions" >"$GIT_DIR/rebased-patches"
ret=$?
if test 0 != $ret