summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2021-12-10 14:35:09 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2021-12-10 14:35:09 -0800
commit8e715503f1c57c43808ac63881e69cb51b08c145 (patch)
tree3ff12eb3b01a11a5b08f916df96b84bf6325eefc
parentMerge branch 'ab/checkout-branch-info-leakfix' (diff)
parentpull: don't say that merge is "the default strategy" (diff)
downloadtgif-8e715503f1c57c43808ac63881e69cb51b08c145.tar.xz
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"
-rw-r--r--builtin/pull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/pull.c b/builtin/pull.c
index 1cfaf9f343..c8457619d8 100644
--- a/builtin/pull.c
+++ b/builtin/pull.c
@@ -970,7 +970,7 @@ static void show_advice_pull_non_ff(void)
"You can do so by running one of the following commands sometime before\n"
"your next pull:\n"
"\n"
- " git config pull.rebase false # merge (the default strategy)\n"
+ " git config pull.rebase false # merge\n"
" git config pull.rebase true # rebase\n"
" git config pull.ff only # fast-forward only\n"
"\n"