Skip to content

Commit 71076d0

Browse files
alexhenriegitster
authored andcommitted
pull: don't say that merge is "the default strategy"
Git no longer has a default strategy for reconciling divergent branches, because there's no way for Git to know which strategy is appropriate in any particular situation. The initially proposed version in [*], that eventually became 031e2f7 (pull: abort by default when fast-forwarding is not possible, 2021-07-22), dropped this phrase from the message, but it was left in the final version by accident. * https://lore.kernel.org/git/[email protected]/ Signed-off-by: Alex Henrie <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 5fbd2fc commit 71076d0

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
@@ -939,7 +939,7 @@ static void show_advice_pull_non_ff(void)
939939
"You can do so by running one of the following commands sometime before\n"
940940
"your next pull:\n"
941941
"\n"
942-
" git config pull.rebase false # merge (the default strategy)\n"
942+
" git config pull.rebase false # merge\n"
943943
" git config pull.rebase true # rebase\n"
944944
" git config pull.ff only # fast-forward only\n"
945945
"\n"

0 commit comments

Comments
 (0)