Skip to content

Commit

Permalink
pull: Apply -q and -v options to rebase mode as well
Browse files Browse the repository at this point in the history
git pull passed -q and -v only to git merge, but they can be useful for
git rebase as well, so pass them there, too.

In particular, using -q shuts up the "Already up-to-date." message.
Especially, a new test script runs the same "pull --rebase" twice to
make sure both cases are quiet, when it has something to fetch and
when it is already up to date.

Signed-off-by: Peter Eisentraut <peter@eisentraut.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Peter Eisentraut authored and Junio C Hamano committed Mar 17, 2013
1 parent 03a0fb0 commit ce4c4d4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion git-pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
;;
*)
Expand Down
27 changes: 27 additions & 0 deletions t/t5521-pull-options.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ test_expect_success 'git pull -q' '
test ! -s out)
'

test_expect_success 'git pull -q --rebase' '
mkdir clonedqrb &&
(cd clonedqrb && git init &&
git pull -q --rebase "../parent" >out 2>err &&
test ! -s err &&
test ! -s out &&
git pull -q --rebase "../parent" >out 2>err &&
test ! -s err &&
test ! -s out)
'

test_expect_success 'git pull' '
mkdir cloned &&
(cd cloned && git init &&
Expand All @@ -27,6 +38,14 @@ test_expect_success 'git pull' '
test ! -s out)
'

test_expect_success 'git pull --rebase' '
mkdir clonedrb &&
(cd clonedrb && git init &&
git pull --rebase "../parent" >out 2>err &&
test -s err &&
test ! -s out)
'

test_expect_success 'git pull -v' '
mkdir clonedv &&
(cd clonedv && git init &&
Expand All @@ -35,6 +54,14 @@ test_expect_success 'git pull -v' '
test ! -s out)
'

test_expect_success 'git pull -v --rebase' '
mkdir clonedvrb &&
(cd clonedvrb && git init &&
git pull -v --rebase "../parent" >out 2>err &&
test -s err &&
test ! -s out)
'

test_expect_success 'git pull -v -q' '
mkdir clonedvq &&
(cd clonedvq && git init &&
Expand Down

0 comments on commit ce4c4d4

Please sign in to comment.