From: Junio C Hamano Date: Wed, 6 Dec 2017 17:09:04 +0000 (-0800) Subject: Merge branch 'tz/redirect-fix' into maint X-Git-Tag: v2.15.2~4 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/ce7320901f275caa1086df6fe0bfc74a7ec2fcd5?ds=inline;hp=-c Merge branch 'tz/redirect-fix' into maint A few scripts (both in production and tests) incorrectly redirected their error output. These have been corrected. * tz/redirect-fix: rebase: fix stderr redirect in apply_autostash() t/lib-gpg: fix gpgconf stderr redirect to /dev/null --- ce7320901f275caa1086df6fe0bfc74a7ec2fcd5 diff --combined git-rebase.sh index 6344e8d5e3,56013702cd..aabbf6b69e --- a/git-rebase.sh +++ b/git-rebase.sh @@@ -55,10 -55,9 +55,10 @@@ LF= ' ok_to_skip_pre_rebase= resolvemsg=" -$(gettext 'When you have resolved this problem, run "git rebase --continue". -If you prefer to skip this patch, run "git rebase --skip" instead. -To check out the original branch and stop rebasing, run "git rebase --abort".') +$(gettext 'Resolve all conflicts manually, mark them as resolved with +"git add/rm ", then run "git rebase --continue". +You can instead skip this commit: run "git rebase --skip". +To abort and get back to the state before "git rebase", run "git rebase --abort".') " unset onto unset restrict_revision @@@ -74,7 -73,6 +74,7 @@@ test "$(git config --bool rebase.stat) 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= @@@ -166,7 -164,7 +166,7 @@@ apply_autostash () if test -f "$state_dir/autostash" then stash_sha1=$(cat "$state_dir/autostash") - if git stash apply $stash_sha1 2>&1 >/dev/null + if git stash apply $stash_sha1 >/dev/null 2>&1 then echo "$(gettext 'Applied autostash.')" >&2 else @@@ -350,9 -348,6 +350,9 @@@ d shift break ;; + *) + usage + ;; esac shift done @@@ -449,11 -444,6 +449,11 @@@ els 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