Message ID | 85016e679eb77cbb17edc9b6849251893a5e9ec2.1627042470.git.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9938f30d13d20026dad2eed7a6b51de25768c858 |
Headers | show |
Series | merge --autostash: apply autostash in more cases | expand |
Philippe Blain via GitGitGadget wrote: > From: Philippe Blain <levraiphilippeblain@gmail.com> > --- a/builtin/merge.c > +++ b/builtin/merge.c > @@ -1715,7 +1715,7 @@ int cmd_merge(int argc, const char **argv, const char *prefix) > else { > printf(_("Rewinding the tree to pristine...\n")); > restore_state(&head_commit->object.oid, &stash); > - printf(_("Using the %s to prepare resolving by hand.\n"), > + printf(_("Using the %s strategy to prepare resolving by hand.\n"), Obviously correct.
diff --git a/builtin/merge.c b/builtin/merge.c index a8a843b1f54..74797b6c7a6 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -1715,7 +1715,7 @@ int cmd_merge(int argc, const char **argv, const char *prefix) else { printf(_("Rewinding the tree to pristine...\n")); restore_state(&head_commit->object.oid, &stash); - printf(_("Using the %s to prepare resolving by hand.\n"), + printf(_("Using the %s strategy to prepare resolving by hand.\n"), best_strategy); try_merge_strategy(best_strategy, common, remoteheads, head_commit);