Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
pull: propagate --progress to merge
author
Jeff King
<peff@peff.net>
Sun, 20 Feb 2011 09:56:56 +0000
(
04:56
-0500)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 21 Feb 2011 18:24:10 +0000
(10:24 -0800)
Now that merge understands progress, we should pass it
along. While we're at it, pass along --no-progress, too.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-pull.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
99bfc66
)
diff --git
a/git-pull.sh
b/git-pull.sh
index eb87f49062b70d707adebca4013809822123608b..5e8215ca74c01460f848f957253f2836ba5c1e9c 100755
(executable)
--- a/
git-pull.sh
+++ b/
git-pull.sh
@@
-53,6
+53,8
@@
do
verbosity="$verbosity -v" ;;
--progress)
progress=--progress ;;
verbosity="$verbosity -v" ;;
--progress)
progress=--progress ;;
+ --no-progress)
+ progress=--no-progress ;;
-n|--no-stat|--no-summary)
diffstat=--no-stat ;;
--stat|--summary)
-n|--no-stat|--no-summary)
diffstat=--no-stat ;;
--stat|--summary)
@@
-293,8
+295,8
@@
true)
;;
*)
eval="git-merge $diffstat $no_commit $squash $no_ff $ff_only"
;;
*)
eval="git-merge $diffstat $no_commit $squash $no_ff $ff_only"
- eval="$eval $log_arg $strategy_args $merge_args"
- eval="$eval \"\$merge_name\" HEAD $merge_head
$verbosity
"
+ eval="$eval $log_arg $strategy_args $merge_args
$verbosity $progress
"
+ eval="$eval \"\$merge_name\" HEAD $merge_head"
;;
esac
eval "exec $eval"
;;
esac
eval "exec $eval"