Skip to content

Commit 8e71550

Browse files
committed
Merge branch 'ah/advice-pull-has-no-preference-between-rebase-and-merge'
The advice message given by "git pull" when the user hasn't made a choice between merge and rebase still said that the merge is the default, which no longer is the case. This has been corrected. * ah/advice-pull-has-no-preference-between-rebase-and-merge: pull: don't say that merge is "the default strategy"
2 parents 7b11728 + 71076d0 commit 8e71550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/pull.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -970,7 +970,7 @@ static void show_advice_pull_non_ff(void)
970970
"You can do so by running one of the following commands sometime before\n"
971971
"your next pull:\n"
972972
"\n"
973-
" git config pull.rebase false # merge (the default strategy)\n"
973+
" git config pull.rebase false # merge\n"
974974
" git config pull.rebase true # rebase\n"
975975
" git config pull.ff only # fast-forward only\n"
976976
"\n"

0 commit comments

Comments
 (0)