aboutsummaryrefslogtreecommitdiff
path: root/git-rebase--am.sh
diff options
context:
space:
mode:
authorKevin Willford <kewillf@microsoft.com>2017-08-10 14:32:56 -0400
committerJunio C Hamano <gitster@pobox.com>2017-08-14 14:09:46 -0700
commit9eaa858eb90802b9b6ce8a061229faba463f4bc3 (patch)
tree86beaf2687e279af7dcd54748c3932895d607531 /git-rebase--am.sh
parent738e88a20cd4c73930a18c759ed6f5704e85109f (diff)
downloadgit-9eaa858eb90802b9b6ce8a061229faba463f4bc3.tar.gz
git-9eaa858eb90802b9b6ce8a061229faba463f4bc3.tar.xz
rebase: turn on progress option by default for format-patch
Pass the "--progress" option to format-patch when the standard error stream is connected to the terminal and "--quiet" is not given. Signed-off-by: Kevin Willford <kewillf@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase--am.sh')
-rw-r--r--git-rebase--am.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/git-rebase--am.sh b/git-rebase--am.sh
index 375239341..ff98fe3a7 100644
--- a/git-rebase--am.sh
+++ b/git-rebase--am.sh
@@ -53,6 +53,7 @@ else
git format-patch -k --stdout --full-index --cherry-pick --right-only \
--src-prefix=a/ --dst-prefix=b/ --no-renames --no-cover-letter \
+ $git_format_patch_opt \
"$revisions" ${restrict_revision+^$restrict_revision} \
>"$GIT_DIR/rebased-patches"
ret=$?