aboutsummaryrefslogtreecommitdiffstats
path: root/git-pull.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-03-25 13:58:34 -0700
committerJunio C Hamano <gitster@pobox.com>2013-03-25 13:58:34 -0700
commita8aa360017e80b9537058caffa53b573df783cae (patch)
tree71fe730a595ff9e515fa814dccc35aa75218f9b7 /git-pull.sh
parentMerge branch 'maint' (diff)
parentpull: Apply -q and -v options to rebase mode as well (diff)
downloadgit-a8aa360017e80b9537058caffa53b573df783cae.tar.gz
git-a8aa360017e80b9537058caffa53b573df783cae.zip
Merge branch 'pe/pull-rebase-v-q'
Teach "git pull --rebase" to pass "-v/-q" command line options to underlying "git rebase". * pe/pull-rebase-v-q: pull: Apply -q and -v options to rebase mode as well
Diffstat (limited to 'git-pull.sh')
-rwxr-xr-xgit-pull.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-pull.sh b/git-pull.sh
index 266e682f6c..5d97e97bd9 100755
--- a/git-pull.sh
+++ b/git-pull.sh
@@ -279,7 +279,7 @@ fi
merge_name=$(git fmt-merge-msg $log_arg <"$GIT_DIR/FETCH_HEAD") || exit
case "$rebase" in
true)
- eval="git-rebase $diffstat $strategy_args $merge_args"
+ eval="git-rebase $diffstat $strategy_args $merge_args $verbosity"
eval="$eval --onto $merge_head ${oldremoteref:-$merge_head}"
;;
*)