From 9eaa858eb90802b9b6ce8a061229faba463f4bc3 Mon Sep 17 00:00:00 2001 From: Kevin Willford Date: Thu, 10 Aug 2017 14:32:56 -0400 Subject: 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 Signed-off-by: Junio C Hamano --- git-rebase.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'git-rebase.sh') diff --git a/git-rebase.sh b/git-rebase.sh index 2cf73b88e8..06f5082dc3 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -73,6 +73,7 @@ test "$(git config --bool rebase.stat)" = true && diffstat=t autostash="$(git config --bool rebase.autostash || echo false)" fork_point=auto git_am_opt= +git_format_patch_opt= rebase_root= force_rebase= allow_rerere_autoupdate= @@ -444,6 +445,11 @@ else state_dir="$apply_dir" fi +if test -t 2 && test -z "$GIT_QUIET" +then + git_format_patch_opt="$git_format_patch_opt --progress" +fi + if test -z "$rebase_root" then case "$#" in -- cgit v1.2.1