On Sat, Feb 29, 2020 at 4:31 PM Elijah Newren <newren@xxxxxxxxx> wrote: > > Ick; we don't need the warning to regurgitate large sections of the > manual, we only need to provide pointers and then they can look up the > details in their favorite way (google, stackoverflow, looking at the > actual manpage, etc.) How about something more like > > > + warning(_("Pulling without specifying how to reconcile divergent branches\n" > > + "is discouraged. You can squelch this message by setting pull.rebase,\n" > > + "or by passing any of --rebase, --no-rebase, or --ff-only\n")); I intentionally made the message similar to the message you get when you try to commit without setting user.name or user.email. Providing the user with clear information on the spot is much more effective at getting them to do the right thing than expecting them to use Google or reread the man pages. We also want the user to understand that they only have to set pull.rebase or pull.ff once, whereas a command-line flag applies only to the current pull. Nevertheless, any warning message is better than no warning at all, so I would be happy to resubmit with your proposed text if there's consensus that a shorter message is better. -Alex