aboutsummaryrefslogtreecommitdiff
path: root/git-rebase--am.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-08-23 14:13:07 -0700
committerJunio C Hamano <gitster@pobox.com>2017-08-23 14:13:07 -0700
commitad7d3c3b391b73207fbb29da99d4f64ad0c54f00 (patch)
treeafdf7e3fd01cdb0d8a1451c46ff1c19fb9ec8de1 /git-rebase--am.sh
parent75010153e95f2b340f841953e3a0ce269ccf394f (diff)
parent9eaa858eb90802b9b6ce8a061229faba463f4bc3 (diff)
downloadgit-ad7d3c3b391b73207fbb29da99d4f64ad0c54f00.tar.gz
git-ad7d3c3b391b73207fbb29da99d4f64ad0c54f00.tar.xz
Merge branch 'kw/rebase-progress'
"git rebase", especially when it is run by mistake and ends up trying to replay many changes, spent long time in silence. The command has been taught to show progress report when it spends long time preparing these many changes to replay (which would give the user a chance to abort with ^C). * kw/rebase-progress: rebase: turn on progress option by default for format-patch format-patch: have progress option while generating patches
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 319933e70..6e64d40d6 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=$?