diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:09 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-12-10 14:35:09 -0800 |
commit | 8e715503f1c57c43808ac63881e69cb51b08c145 (patch) | |
tree | 3ff12eb3b01a11a5b08f916df96b84bf6325eefc | |
parent | Merge branch 'ab/checkout-branch-info-leakfix' (diff) | |
parent | pull: don't say that merge is "the default strategy" (diff) | |
download | tgif-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.c | 2 |
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" |