4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
9 #define USE_THE_INDEX_COMPATIBILITY_MACROS
12 #include "parse-options.h"
15 #include "run-command.h"
22 #include "unpack-trees.h"
23 #include "cache-tree.h"
30 #include "merge-recursive.h"
31 #include "resolve-undo.h"
33 #include "fmt-merge-msg.h"
34 #include "gpg-interface.h"
35 #include "sequencer.h"
36 #include "string-list.h"
40 #include "commit-reach.h"
41 #include "wt-status.h"
43 #define DEFAULT_TWOHEAD (1<<0)
44 #define DEFAULT_OCTOPUS (1<<1)
45 #define NO_FAST_FORWARD (1<<2)
46 #define NO_TRIVIAL (1<<3)
53 static const char * const builtin_merge_usage[] = {
54 N_("git merge [<options>] [<commit>...]"),
55 N_("git merge --abort"),
56 N_("git merge --continue"),
60 static int show_diffstat = 1, shortlog_len = -1, squash;
61 static int option_commit = -1;
62 static int option_edit = -1;
63 static int allow_trivial = 1, have_message, verify_signatures;
64 static int overwrite_ignore = 1;
65 static struct strbuf merge_msg = STRBUF_INIT;
66 static struct strategy **use_strategies;
67 static size_t use_strategies_nr, use_strategies_alloc;
68 static const char **xopts;
69 static size_t xopts_nr, xopts_alloc;
70 static const char *branch;
71 static char *branch_mergeoptions;
72 static int option_renormalize;
74 static int allow_rerere_auto;
75 static int abort_current_merge;
76 static int continue_current_merge;
77 static int allow_unrelated_histories;
78 static int show_progress = -1;
79 static int default_to_upstream = 1;
81 static const char *sign_commit;
82 static int verify_msg = 1;
84 static struct strategy all_strategy[] = {
85 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
86 { "octopus", DEFAULT_OCTOPUS },
88 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
89 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
92 static const char *pull_twohead, *pull_octopus;
100 static enum ff_type fast_forward = FF_ALLOW;
102 static const char *cleanup_arg;
103 static enum commit_msg_cleanup_mode cleanup_mode;
105 static int option_parse_message(const struct option *opt,
106 const char *arg, int unset)
108 struct strbuf *buf = opt->value;
111 strbuf_setlen(buf, 0);
113 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
116 return error(_("switch `m' requires a value"));
120 static enum parse_opt_result option_read_message(struct parse_opt_ctx_t *ctx,
121 const struct option *opt,
122 const char *arg_not_used,
125 struct strbuf *buf = opt->value;
128 BUG_ON_OPT_ARG(arg_not_used);
130 BUG("-F cannot be negated");
135 } else if (ctx->argc > 1) {
139 return error(_("option `%s' requires a value"), opt->long_name);
142 strbuf_addch(buf, '\n');
143 if (ctx->prefix && !is_absolute_path(arg))
144 arg = prefix_filename(ctx->prefix, arg);
145 if (strbuf_read_file(buf, arg, 0) < 0)
146 return error(_("could not read file '%s'"), arg);
152 static struct strategy *get_strategy(const char *name)
155 struct strategy *ret;
156 static struct cmdnames main_cmds, other_cmds;
162 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
163 if (!strcmp(name, all_strategy[i].name))
164 return &all_strategy[i];
167 struct cmdnames not_strategies;
170 memset(¬_strategies, 0, sizeof(struct cmdnames));
171 load_command_list("git-merge-", &main_cmds, &other_cmds);
172 for (i = 0; i < main_cmds.cnt; i++) {
174 struct cmdname *ent = main_cmds.names[i];
175 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
176 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
177 && !all_strategy[j].name[ent->len])
180 add_cmdname(¬_strategies, ent->name, ent->len);
182 exclude_cmds(&main_cmds, ¬_strategies);
184 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
185 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
186 fprintf(stderr, _("Available strategies are:"));
187 for (i = 0; i < main_cmds.cnt; i++)
188 fprintf(stderr, " %s", main_cmds.names[i]->name);
189 fprintf(stderr, ".\n");
190 if (other_cmds.cnt) {
191 fprintf(stderr, _("Available custom strategies are:"));
192 for (i = 0; i < other_cmds.cnt; i++)
193 fprintf(stderr, " %s", other_cmds.names[i]->name);
194 fprintf(stderr, ".\n");
199 ret = xcalloc(1, sizeof(struct strategy));
200 ret->name = xstrdup(name);
201 ret->attr = NO_TRIVIAL;
205 static void append_strategy(struct strategy *s)
207 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
208 use_strategies[use_strategies_nr++] = s;
211 static int option_parse_strategy(const struct option *opt,
212 const char *name, int unset)
217 append_strategy(get_strategy(name));
221 static int option_parse_x(const struct option *opt,
222 const char *arg, int unset)
227 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
228 xopts[xopts_nr++] = xstrdup(arg);
232 static int option_parse_n(const struct option *opt,
233 const char *arg, int unset)
236 show_diffstat = unset;
240 static struct option builtin_merge_options[] = {
241 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
242 N_("do not show a diffstat at the end of the merge"),
243 PARSE_OPT_NOARG, option_parse_n },
244 OPT_BOOL(0, "stat", &show_diffstat,
245 N_("show a diffstat at the end of the merge")),
246 OPT_BOOL(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
247 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
248 N_("add (at most <n>) entries from shortlog to merge commit message"),
249 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
250 OPT_BOOL(0, "squash", &squash,
251 N_("create a single commit instead of doing a merge")),
252 OPT_BOOL(0, "commit", &option_commit,
253 N_("perform a commit if the merge succeeds (default)")),
254 OPT_BOOL('e', "edit", &option_edit,
255 N_("edit message before committing")),
256 OPT_CLEANUP(&cleanup_arg),
257 OPT_SET_INT(0, "ff", &fast_forward, N_("allow fast-forward (default)"), FF_ALLOW),
258 OPT_SET_INT_F(0, "ff-only", &fast_forward,
259 N_("abort if fast-forward is not possible"),
260 FF_ONLY, PARSE_OPT_NONEG),
261 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
262 OPT_BOOL(0, "verify-signatures", &verify_signatures,
263 N_("verify that the named commit has a valid GPG signature")),
264 OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
265 N_("merge strategy to use"), option_parse_strategy),
266 OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),
267 N_("option for selected merge strategy"), option_parse_x),
268 OPT_CALLBACK('m', "message", &merge_msg, N_("message"),
269 N_("merge commit message (for a non-fast-forward merge)"),
270 option_parse_message),
271 { OPTION_LOWLEVEL_CALLBACK, 'F', "file", &merge_msg, N_("path"),
272 N_("read message from file"), PARSE_OPT_NONEG,
273 NULL, 0, option_read_message },
274 OPT__VERBOSITY(&verbosity),
275 OPT_BOOL(0, "abort", &abort_current_merge,
276 N_("abort the current in-progress merge")),
277 OPT_BOOL(0, "continue", &continue_current_merge,
278 N_("continue the current in-progress merge")),
279 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories,
280 N_("allow merging unrelated histories")),
281 OPT_SET_INT(0, "progress", &show_progress, N_("force progress reporting"), 1),
282 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
283 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
284 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore, N_("update ignored files (default)")),
285 OPT_BOOL(0, "signoff", &signoff, N_("add Signed-off-by:")),
286 OPT_BOOL(0, "verify", &verify_msg, N_("verify commit-msg hook")),
290 /* Cleans up metadata that is uninteresting after a succeeded merge. */
291 static void drop_save(void)
293 unlink(git_path_merge_head(the_repository));
294 unlink(git_path_merge_msg(the_repository));
295 unlink(git_path_merge_mode(the_repository));
298 static int save_state(struct object_id *stash)
301 struct child_process cp = CHILD_PROCESS_INIT;
302 struct strbuf buffer = STRBUF_INIT;
303 const char *argv[] = {"stash", "create", NULL};
310 if (start_command(&cp))
311 die(_("could not run stash."));
312 len = strbuf_read(&buffer, cp.out, 1024);
315 if (finish_command(&cp) || len < 0)
316 die(_("stash failed"));
317 else if (!len) /* no changes */
319 strbuf_setlen(&buffer, buffer.len-1);
320 if (get_oid(buffer.buf, stash))
321 die(_("not a valid object: %s"), buffer.buf);
324 strbuf_release(&buffer);
328 static void read_empty(const struct object_id *oid, int verbose)
333 args[i++] = "read-tree";
338 args[i++] = empty_tree_oid_hex();
339 args[i++] = oid_to_hex(oid);
342 if (run_command_v_opt(args, RUN_GIT_CMD))
343 die(_("read-tree failed"));
346 static void reset_hard(const struct object_id *oid, int verbose)
351 args[i++] = "read-tree";
354 args[i++] = "--reset";
356 args[i++] = oid_to_hex(oid);
359 if (run_command_v_opt(args, RUN_GIT_CMD))
360 die(_("read-tree failed"));
363 static void restore_state(const struct object_id *head,
364 const struct object_id *stash)
366 struct strbuf sb = STRBUF_INIT;
367 const char *args[] = { "stash", "apply", NULL, NULL };
369 if (is_null_oid(stash))
374 args[2] = oid_to_hex(stash);
377 * It is OK to ignore error here, for example when there was
378 * nothing to restore.
380 run_command_v_opt(args, RUN_GIT_CMD);
383 refresh_cache(REFRESH_QUIET);
386 /* This is called when no merge was necessary. */
387 static void finish_up_to_date(const char *msg)
390 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
394 static void squash_message(struct commit *commit, struct commit_list *remoteheads)
397 struct strbuf out = STRBUF_INIT;
398 struct commit_list *j;
399 struct pretty_print_context ctx = {0};
401 printf(_("Squash commit -- not updating HEAD\n"));
403 repo_init_revisions(the_repository, &rev, NULL);
404 rev.ignore_merges = 1;
405 rev.commit_format = CMIT_FMT_MEDIUM;
407 commit->object.flags |= UNINTERESTING;
408 add_pending_object(&rev, &commit->object, NULL);
410 for (j = remoteheads; j; j = j->next)
411 add_pending_object(&rev, &j->item->object, NULL);
413 setup_revisions(0, NULL, &rev, NULL);
414 if (prepare_revision_walk(&rev))
415 die(_("revision walk setup failed"));
417 ctx.abbrev = rev.abbrev;
418 ctx.date_mode = rev.date_mode;
419 ctx.fmt = rev.commit_format;
421 strbuf_addstr(&out, "Squashed commit of the following:\n");
422 while ((commit = get_revision(&rev)) != NULL) {
423 strbuf_addch(&out, '\n');
424 strbuf_addf(&out, "commit %s\n",
425 oid_to_hex(&commit->object.oid));
426 pretty_print_commit(&ctx, commit, &out);
428 write_file_buf(git_path_squash_msg(the_repository), out.buf, out.len);
429 strbuf_release(&out);
432 static void finish(struct commit *head_commit,
433 struct commit_list *remoteheads,
434 const struct object_id *new_head, const char *msg)
436 struct strbuf reflog_message = STRBUF_INIT;
437 const struct object_id *head = &head_commit->object.oid;
440 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
444 strbuf_addf(&reflog_message, "%s: %s",
445 getenv("GIT_REFLOG_ACTION"), msg);
448 squash_message(head_commit, remoteheads);
450 if (verbosity >= 0 && !merge_msg.len)
451 printf(_("No merge message -- not updating HEAD\n"));
453 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
454 update_ref(reflog_message.buf, "HEAD", new_head, head,
455 0, UPDATE_REFS_DIE_ON_ERR);
457 * We ignore errors in 'gc --auto', since the
458 * user should see them.
460 close_all_packs(the_repository->objects);
461 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
464 if (new_head && show_diffstat) {
465 struct diff_options opts;
466 repo_diff_setup(the_repository, &opts);
467 opts.stat_width = -1; /* use full terminal width */
468 opts.stat_graph_width = -1; /* respect statGraphWidth config */
469 opts.output_format |=
470 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
471 opts.detect_rename = DIFF_DETECT_RENAME;
472 diff_setup_done(&opts);
473 diff_tree_oid(head, new_head, "", &opts);
478 /* Run a post-merge hook */
479 run_hook_le(NULL, "post-merge", squash ? "1" : "0", NULL);
481 strbuf_release(&reflog_message);
484 /* Get the name for the merge commit's message. */
485 static void merge_name(const char *remote, struct strbuf *msg)
487 struct commit *remote_head;
488 struct object_id branch_head;
489 struct strbuf buf = STRBUF_INIT;
490 struct strbuf bname = STRBUF_INIT;
491 struct merge_remote_desc *desc;
496 strbuf_branchname(&bname, remote, 0);
499 oidclr(&branch_head);
500 remote_head = get_merge_parent(remote);
502 die(_("'%s' does not point to a commit"), remote);
504 if (dwim_ref(remote, strlen(remote), &branch_head, &found_ref) > 0) {
505 if (starts_with(found_ref, "refs/heads/")) {
506 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
507 oid_to_hex(&branch_head), remote);
510 if (starts_with(found_ref, "refs/tags/")) {
511 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
512 oid_to_hex(&branch_head), remote);
515 if (starts_with(found_ref, "refs/remotes/")) {
516 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
517 oid_to_hex(&branch_head), remote);
522 /* See if remote matches <name>^^^.. or <name>~<number> */
523 for (len = 0, ptr = remote + strlen(remote);
524 remote < ptr && ptr[-1] == '^';
531 ptr = strrchr(remote, '~');
533 int seen_nonzero = 0;
536 while (*++ptr && isdigit(*ptr)) {
537 seen_nonzero |= (*ptr != '0');
541 len = 0; /* not ...~<number> */
542 else if (seen_nonzero)
545 early = 1; /* "name~" is "name~1"! */
549 struct strbuf truname = STRBUF_INIT;
550 strbuf_addf(&truname, "refs/heads/%s", remote);
551 strbuf_setlen(&truname, truname.len - len);
552 if (ref_exists(truname.buf)) {
554 "%s\t\tbranch '%s'%s of .\n",
555 oid_to_hex(&remote_head->object.oid),
557 (early ? " (early part)" : ""));
558 strbuf_release(&truname);
561 strbuf_release(&truname);
564 desc = merge_remote_util(remote_head);
565 if (desc && desc->obj && desc->obj->type == OBJ_TAG) {
566 strbuf_addf(msg, "%s\t\t%s '%s'\n",
567 oid_to_hex(&desc->obj->oid),
568 type_name(desc->obj->type),
573 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
574 oid_to_hex(&remote_head->object.oid), remote);
576 strbuf_release(&buf);
577 strbuf_release(&bname);
580 static void parse_branch_merge_options(char *bmo)
587 argc = split_cmdline(bmo, &argv);
589 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
590 _(split_cmdline_strerror(argc)));
591 REALLOC_ARRAY(argv, argc + 2);
592 MOVE_ARRAY(argv + 1, argv, argc + 1);
594 argv[0] = "branch.*.mergeoptions";
595 parse_options(argc, argv, NULL, builtin_merge_options,
596 builtin_merge_usage, 0);
600 static int git_merge_config(const char *k, const char *v, void *cb)
604 if (branch && starts_with(k, "branch.") &&
605 starts_with(k + 7, branch) &&
606 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
607 free(branch_mergeoptions);
608 branch_mergeoptions = xstrdup(v);
612 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
613 show_diffstat = git_config_bool(k, v);
614 else if (!strcmp(k, "merge.verifysignatures"))
615 verify_signatures = git_config_bool(k, v);
616 else if (!strcmp(k, "pull.twohead"))
617 return git_config_string(&pull_twohead, k, v);
618 else if (!strcmp(k, "pull.octopus"))
619 return git_config_string(&pull_octopus, k, v);
620 else if (!strcmp(k, "commit.cleanup"))
621 return git_config_string(&cleanup_arg, k, v);
622 else if (!strcmp(k, "merge.renormalize"))
623 option_renormalize = git_config_bool(k, v);
624 else if (!strcmp(k, "merge.ff")) {
625 int boolval = git_parse_maybe_bool(v);
627 fast_forward = boolval ? FF_ALLOW : FF_NO;
628 } else if (v && !strcmp(v, "only")) {
629 fast_forward = FF_ONLY;
630 } /* do not barf on values from future versions of git */
632 } else if (!strcmp(k, "merge.defaulttoupstream")) {
633 default_to_upstream = git_config_bool(k, v);
635 } else if (!strcmp(k, "commit.gpgsign")) {
636 sign_commit = git_config_bool(k, v) ? "" : NULL;
640 status = fmt_merge_msg_config(k, v, cb);
643 status = git_gpg_config(k, v, NULL);
646 return git_diff_ui_config(k, v, cb);
649 static int read_tree_trivial(struct object_id *common, struct object_id *head,
650 struct object_id *one)
653 struct tree *trees[MAX_UNPACK_TREES];
654 struct tree_desc t[MAX_UNPACK_TREES];
655 struct unpack_trees_options opts;
657 memset(&opts, 0, sizeof(opts));
659 opts.src_index = &the_index;
660 opts.dst_index = &the_index;
662 opts.verbose_update = 1;
663 opts.trivial_merges_only = 1;
665 trees[nr_trees] = parse_tree_indirect(common);
666 if (!trees[nr_trees++])
668 trees[nr_trees] = parse_tree_indirect(head);
669 if (!trees[nr_trees++])
671 trees[nr_trees] = parse_tree_indirect(one);
672 if (!trees[nr_trees++])
674 opts.fn = threeway_merge;
675 cache_tree_free(&active_cache_tree);
676 for (i = 0; i < nr_trees; i++) {
677 parse_tree(trees[i]);
678 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
680 if (unpack_trees(nr_trees, t, &opts))
685 static void write_tree_trivial(struct object_id *oid)
687 if (write_cache_as_tree(oid, 0, NULL))
688 die(_("git write-tree failed to write a tree"));
691 static int try_merge_strategy(const char *strategy, struct commit_list *common,
692 struct commit_list *remoteheads,
695 struct lock_file lock = LOCK_INIT;
696 const char *head_arg = "HEAD";
698 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
699 refresh_cache(REFRESH_QUIET);
700 if (write_locked_index(&the_index, &lock,
701 COMMIT_LOCK | SKIP_IF_UNCHANGED))
702 return error(_("Unable to write index."));
704 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
706 struct commit *result;
707 struct commit_list *reversed = NULL;
708 struct merge_options o;
709 struct commit_list *j;
711 if (remoteheads->next) {
712 error(_("Not handling anything other than two heads merge."));
716 init_merge_options(&o, the_repository);
717 if (!strcmp(strategy, "subtree"))
718 o.subtree_shift = "";
720 o.renormalize = option_renormalize;
721 o.show_rename_progress =
722 show_progress == -1 ? isatty(2) : show_progress;
724 for (x = 0; x < xopts_nr; x++)
725 if (parse_merge_opt(&o, xopts[x]))
726 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
728 o.branch1 = head_arg;
729 o.branch2 = merge_remote_util(remoteheads->item)->name;
731 for (j = common; j; j = j->next)
732 commit_list_insert(j->item, &reversed);
734 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
735 clean = merge_recursive(&o, head,
736 remoteheads->item, reversed, &result);
739 if (write_locked_index(&the_index, &lock,
740 COMMIT_LOCK | SKIP_IF_UNCHANGED))
741 die(_("unable to write %s"), get_index_file());
742 return clean ? 0 : 1;
744 return try_merge_command(the_repository,
745 strategy, xopts_nr, xopts,
746 common, head_arg, remoteheads);
750 static void count_diff_files(struct diff_queue_struct *q,
751 struct diff_options *opt, void *data)
758 static int count_unmerged_entries(void)
762 for (i = 0; i < active_nr; i++)
763 if (ce_stage(active_cache[i]))
769 static void add_strategies(const char *string, unsigned attr)
774 struct string_list list = STRING_LIST_INIT_DUP;
775 struct string_list_item *item;
776 string_list_split(&list, string, ' ', -1);
777 for_each_string_list_item(item, &list)
778 append_strategy(get_strategy(item->string));
779 string_list_clear(&list, 0);
782 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
783 if (all_strategy[i].attr & attr)
784 append_strategy(&all_strategy[i]);
788 static void read_merge_msg(struct strbuf *msg)
790 const char *filename = git_path_merge_msg(the_repository);
792 if (strbuf_read_file(msg, filename, 0) < 0)
793 die_errno(_("Could not read from '%s'"), filename);
796 static void write_merge_state(struct commit_list *);
797 static void abort_commit(struct commit_list *remoteheads, const char *err_msg)
800 error("%s", err_msg);
802 _("Not committing merge; use 'git commit' to complete the merge.\n"));
803 write_merge_state(remoteheads);
807 static const char merge_editor_comment[] =
808 N_("Please enter a commit message to explain why this merge is necessary,\n"
809 "especially if it merges an updated upstream into a topic branch.\n"
812 static const char scissors_editor_comment[] =
813 N_("An empty message aborts the commit.\n");
815 static const char no_scissors_editor_comment[] =
816 N_("Lines starting with '%c' will be ignored, and an empty message aborts\n"
819 static void write_merge_heads(struct commit_list *);
820 static void prepare_to_commit(struct commit_list *remoteheads)
822 struct strbuf msg = STRBUF_INIT;
823 strbuf_addbuf(&msg, &merge_msg);
825 BUG("the control must not reach here under --squash");
826 if (0 < option_edit) {
827 strbuf_addch(&msg, '\n');
828 if (cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS) {
829 wt_status_append_cut_line(&msg);
830 strbuf_commented_addf(&msg, "\n");
832 strbuf_commented_addf(&msg, _(merge_editor_comment));
833 strbuf_commented_addf(&msg, _(cleanup_mode == COMMIT_MSG_CLEANUP_SCISSORS ?
834 scissors_editor_comment :
835 no_scissors_editor_comment), comment_line_char);
838 append_signoff(&msg, ignore_non_trailer(msg.buf, msg.len), 0);
839 write_merge_heads(remoteheads);
840 write_file_buf(git_path_merge_msg(the_repository), msg.buf, msg.len);
841 if (run_commit_hook(0 < option_edit, get_index_file(), "prepare-commit-msg",
842 git_path_merge_msg(the_repository), "merge", NULL))
843 abort_commit(remoteheads, NULL);
844 if (0 < option_edit) {
845 if (launch_editor(git_path_merge_msg(the_repository), NULL, NULL))
846 abort_commit(remoteheads, NULL);
849 if (verify_msg && run_commit_hook(0 < option_edit, get_index_file(),
851 git_path_merge_msg(the_repository), NULL))
852 abort_commit(remoteheads, NULL);
854 read_merge_msg(&msg);
855 cleanup_message(&msg, cleanup_mode, 0);
857 abort_commit(remoteheads, _("Empty commit message."));
858 strbuf_release(&merge_msg);
859 strbuf_addbuf(&merge_msg, &msg);
860 strbuf_release(&msg);
863 static int merge_trivial(struct commit *head, struct commit_list *remoteheads)
865 struct object_id result_tree, result_commit;
866 struct commit_list *parents, **pptr = &parents;
867 struct lock_file lock = LOCK_INIT;
869 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
870 refresh_cache(REFRESH_QUIET);
871 if (write_locked_index(&the_index, &lock,
872 COMMIT_LOCK | SKIP_IF_UNCHANGED))
873 return error(_("Unable to write index."));
875 write_tree_trivial(&result_tree);
876 printf(_("Wonderful.\n"));
877 pptr = commit_list_append(head, pptr);
878 pptr = commit_list_append(remoteheads->item, pptr);
879 prepare_to_commit(remoteheads);
880 if (commit_tree(merge_msg.buf, merge_msg.len, &result_tree, parents,
881 &result_commit, NULL, sign_commit))
882 die(_("failed to write commit object"));
883 finish(head, remoteheads, &result_commit, "In-index merge");
888 static int finish_automerge(struct commit *head,
890 struct commit_list *common,
891 struct commit_list *remoteheads,
892 struct object_id *result_tree,
893 const char *wt_strategy)
895 struct commit_list *parents = NULL;
896 struct strbuf buf = STRBUF_INIT;
897 struct object_id result_commit;
899 free_commit_list(common);
900 parents = remoteheads;
901 if (!head_subsumed || fast_forward == FF_NO)
902 commit_list_insert(head, &parents);
903 prepare_to_commit(remoteheads);
904 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree, parents,
905 &result_commit, NULL, sign_commit))
906 die(_("failed to write commit object"));
907 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
908 finish(head, remoteheads, &result_commit, buf.buf);
909 strbuf_release(&buf);
914 static int suggest_conflicts(void)
916 const char *filename;
918 struct strbuf msgbuf = STRBUF_INIT;
920 filename = git_path_merge_msg(the_repository);
921 fp = xfopen(filename, "a");
924 * We can't use cleanup_mode because if we're not using the editor,
925 * get_cleanup_mode will return COMMIT_MSG_CLEANUP_SPACE instead, even
926 * though the message is meant to be processed later by git-commit.
927 * Thus, we will get the cleanup mode which is returned when we _are_
930 append_conflicts_hint(&the_index, &msgbuf,
931 get_cleanup_mode(cleanup_arg, 1));
932 fputs(msgbuf.buf, fp);
933 strbuf_release(&msgbuf);
935 repo_rerere(the_repository, allow_rerere_auto);
936 printf(_("Automatic merge failed; "
937 "fix conflicts and then commit the result.\n"));
941 static int evaluate_result(void)
946 /* Check how many files differ. */
947 repo_init_revisions(the_repository, &rev, "");
948 setup_revisions(0, NULL, &rev, NULL);
949 rev.diffopt.output_format |=
950 DIFF_FORMAT_CALLBACK;
951 rev.diffopt.format_callback = count_diff_files;
952 rev.diffopt.format_callback_data = &cnt;
953 run_diff_files(&rev, 0);
956 * Check how many unmerged entries are
959 cnt += count_unmerged_entries();
965 * Pretend as if the user told us to merge with the remote-tracking
966 * branch we have for the upstream of the current branch
968 static int setup_with_upstream(const char ***argv)
970 struct branch *branch = branch_get(NULL);
975 die(_("No current branch."));
976 if (!branch->remote_name)
977 die(_("No remote for the current branch."));
978 if (!branch->merge_nr)
979 die(_("No default upstream defined for the current branch."));
981 args = xcalloc(st_add(branch->merge_nr, 1), sizeof(char *));
982 for (i = 0; i < branch->merge_nr; i++) {
983 if (!branch->merge[i]->dst)
984 die(_("No remote-tracking branch for %s from %s"),
985 branch->merge[i]->src, branch->remote_name);
986 args[i] = branch->merge[i]->dst;
993 static void write_merge_heads(struct commit_list *remoteheads)
995 struct commit_list *j;
996 struct strbuf buf = STRBUF_INIT;
998 for (j = remoteheads; j; j = j->next) {
999 struct object_id *oid;
1000 struct commit *c = j->item;
1001 struct merge_remote_desc *desc;
1003 desc = merge_remote_util(c);
1004 if (desc && desc->obj) {
1005 oid = &desc->obj->oid;
1007 oid = &c->object.oid;
1009 strbuf_addf(&buf, "%s\n", oid_to_hex(oid));
1011 write_file_buf(git_path_merge_head(the_repository), buf.buf, buf.len);
1014 if (fast_forward == FF_NO)
1015 strbuf_addstr(&buf, "no-ff");
1016 write_file_buf(git_path_merge_mode(the_repository), buf.buf, buf.len);
1017 strbuf_release(&buf);
1020 static void write_merge_state(struct commit_list *remoteheads)
1022 write_merge_heads(remoteheads);
1023 strbuf_addch(&merge_msg, '\n');
1024 write_file_buf(git_path_merge_msg(the_repository), merge_msg.buf,
1028 static int default_edit_option(void)
1030 static const char name[] = "GIT_MERGE_AUTOEDIT";
1031 const char *e = getenv(name);
1032 struct stat st_stdin, st_stdout;
1035 /* an explicit -m msg without --[no-]edit */
1039 int v = git_parse_maybe_bool(e);
1041 die(_("Bad value '%s' in environment '%s'"), e, name);
1045 /* Use editor if stdin and stdout are the same and is a tty */
1046 return (!fstat(0, &st_stdin) &&
1047 !fstat(1, &st_stdout) &&
1048 isatty(0) && isatty(1) &&
1049 st_stdin.st_dev == st_stdout.st_dev &&
1050 st_stdin.st_ino == st_stdout.st_ino &&
1051 st_stdin.st_mode == st_stdout.st_mode);
1054 static struct commit_list *reduce_parents(struct commit *head_commit,
1056 struct commit_list *remoteheads)
1058 struct commit_list *parents, **remotes;
1061 * Is the current HEAD reachable from another commit being
1062 * merged? If so we do not want to record it as a parent of
1063 * the resulting merge, unless --no-ff is given. We will flip
1064 * this variable to 0 when we find HEAD among the independent
1065 * tips being merged.
1069 /* Find what parents to record by checking independent ones. */
1070 parents = reduce_heads(remoteheads);
1071 free_commit_list(remoteheads);
1074 remotes = &remoteheads;
1076 struct commit *commit = pop_commit(&parents);
1077 if (commit == head_commit)
1080 remotes = &commit_list_insert(commit, remotes)->next;
1085 static void prepare_merge_message(struct strbuf *merge_names, struct strbuf *merge_msg)
1087 struct fmt_merge_msg_opts opts;
1089 memset(&opts, 0, sizeof(opts));
1090 opts.add_title = !have_message;
1091 opts.shortlog_len = shortlog_len;
1092 opts.credit_people = (0 < option_edit);
1094 fmt_merge_msg(merge_names, merge_msg, &opts);
1096 strbuf_setlen(merge_msg, merge_msg->len - 1);
1099 static void handle_fetch_head(struct commit_list **remotes, struct strbuf *merge_names)
1101 const char *filename;
1103 struct strbuf fetch_head_file = STRBUF_INIT;
1104 const unsigned hexsz = the_hash_algo->hexsz;
1107 merge_names = &fetch_head_file;
1109 filename = git_path_fetch_head(the_repository);
1110 fd = open(filename, O_RDONLY);
1112 die_errno(_("could not open '%s' for reading"), filename);
1114 if (strbuf_read(merge_names, fd, 0) < 0)
1115 die_errno(_("could not read '%s'"), filename);
1117 die_errno(_("could not close '%s'"), filename);
1119 for (pos = 0; pos < merge_names->len; pos = npos) {
1120 struct object_id oid;
1122 struct commit *commit;
1124 ptr = strchr(merge_names->buf + pos, '\n');
1126 npos = ptr - merge_names->buf + 1;
1128 npos = merge_names->len;
1130 if (npos - pos < hexsz + 2 ||
1131 get_oid_hex(merge_names->buf + pos, &oid))
1132 commit = NULL; /* bad */
1133 else if (memcmp(merge_names->buf + pos + hexsz, "\t\t", 2))
1134 continue; /* not-for-merge */
1136 char saved = merge_names->buf[pos + hexsz];
1137 merge_names->buf[pos + hexsz] = '\0';
1138 commit = get_merge_parent(merge_names->buf + pos);
1139 merge_names->buf[pos + hexsz] = saved;
1144 die(_("not something we can merge in %s: %s"),
1145 filename, merge_names->buf + pos);
1147 remotes = &commit_list_insert(commit, remotes)->next;
1150 if (merge_names == &fetch_head_file)
1151 strbuf_release(&fetch_head_file);
1154 static struct commit_list *collect_parents(struct commit *head_commit,
1156 int argc, const char **argv,
1157 struct strbuf *merge_msg)
1160 struct commit_list *remoteheads = NULL;
1161 struct commit_list **remotes = &remoteheads;
1162 struct strbuf merge_names = STRBUF_INIT, *autogen = NULL;
1164 if (merge_msg && (!have_message || shortlog_len))
1165 autogen = &merge_names;
1168 remotes = &commit_list_insert(head_commit, remotes)->next;
1170 if (argc == 1 && !strcmp(argv[0], "FETCH_HEAD")) {
1171 handle_fetch_head(remotes, autogen);
1172 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1174 for (i = 0; i < argc; i++) {
1175 struct commit *commit = get_merge_parent(argv[i]);
1177 help_unknown_ref(argv[i], "merge",
1178 _("not something we can merge"));
1179 remotes = &commit_list_insert(commit, remotes)->next;
1181 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1183 struct commit_list *p;
1184 for (p = remoteheads; p; p = p->next)
1185 merge_name(merge_remote_util(p->item)->name, autogen);
1190 prepare_merge_message(autogen, merge_msg);
1191 strbuf_release(autogen);
1197 static int merging_a_throwaway_tag(struct commit *commit)
1200 struct object_id oid;
1201 int is_throwaway_tag = 0;
1203 /* Are we merging a tag? */
1204 if (!merge_remote_util(commit) ||
1205 !merge_remote_util(commit)->obj ||
1206 merge_remote_util(commit)->obj->type != OBJ_TAG)
1207 return is_throwaway_tag;
1210 * Now we know we are merging a tag object. Are we downstream
1211 * and following the tags from upstream? If so, we must have
1212 * the tag object pointed at by "refs/tags/$T" where $T is the
1213 * tagname recorded in the tag object. We want to allow such
1214 * a "just to catch up" merge to fast-forward.
1216 * Otherwise, we are playing an integrator's role, making a
1217 * merge with a throw-away tag from a contributor with
1218 * something like "git pull $contributor $signed_tag".
1219 * We want to forbid such a merge from fast-forwarding
1220 * by default; otherwise we would not keep the signature
1223 tag_ref = xstrfmt("refs/tags/%s",
1224 ((struct tag *)merge_remote_util(commit)->obj)->tag);
1225 if (!read_ref(tag_ref, &oid) &&
1226 oideq(&oid, &merge_remote_util(commit)->obj->oid))
1227 is_throwaway_tag = 0;
1229 is_throwaway_tag = 1;
1231 return is_throwaway_tag;
1234 int cmd_merge(int argc, const char **argv, const char *prefix)
1236 struct object_id result_tree, stash, head_oid;
1237 struct commit *head_commit;
1238 struct strbuf buf = STRBUF_INIT;
1239 int i, ret = 0, head_subsumed;
1240 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1241 struct commit_list *common = NULL;
1242 const char *best_strategy = NULL, *wt_strategy = NULL;
1243 struct commit_list *remoteheads, *p;
1244 void *branch_to_free;
1245 int orig_argc = argc;
1247 if (argc == 2 && !strcmp(argv[1], "-h"))
1248 usage_with_options(builtin_merge_usage, builtin_merge_options);
1251 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1254 branch = branch_to_free = resolve_refdup("HEAD", 0, &head_oid, NULL);
1256 skip_prefix(branch, "refs/heads/", &branch);
1258 init_diff_ui_defaults();
1259 git_config(git_merge_config, NULL);
1261 if (!branch || is_null_oid(&head_oid))
1264 head_commit = lookup_commit_or_die(&head_oid, "HEAD");
1266 if (branch_mergeoptions)
1267 parse_branch_merge_options(branch_mergeoptions);
1268 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1269 builtin_merge_usage, 0);
1270 if (shortlog_len < 0)
1271 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
1273 if (verbosity < 0 && show_progress == -1)
1276 if (abort_current_merge) {
1278 const char *nargv[] = {"reset", "--merge", NULL};
1281 usage_msg_opt(_("--abort expects no arguments"),
1282 builtin_merge_usage, builtin_merge_options);
1284 if (!file_exists(git_path_merge_head(the_repository)))
1285 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1287 /* Invoke 'git reset --merge' */
1288 ret = cmd_reset(nargc, nargv, prefix);
1292 if (continue_current_merge) {
1294 const char *nargv[] = {"commit", NULL};
1297 usage_msg_opt(_("--continue expects no arguments"),
1298 builtin_merge_usage, builtin_merge_options);
1300 if (!file_exists(git_path_merge_head(the_repository)))
1301 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1303 /* Invoke 'git commit' */
1304 ret = cmd_commit(nargc, nargv, prefix);
1308 if (read_cache_unmerged())
1309 die_resolve_conflict("merge");
1311 if (file_exists(git_path_merge_head(the_repository))) {
1313 * There is no unmerged entry, don't advise 'git
1314 * add/rm <file>', just 'git commit'.
1316 if (advice_resolve_conflict)
1317 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1318 "Please, commit your changes before you merge."));
1320 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1322 if (file_exists(git_path_cherry_pick_head(the_repository))) {
1323 if (advice_resolve_conflict)
1324 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1325 "Please, commit your changes before you merge."));
1327 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1329 resolve_undo_clear();
1331 if (option_edit < 0)
1332 option_edit = default_edit_option();
1334 cleanup_mode = get_cleanup_mode(cleanup_arg, 0 < option_edit);
1340 if (fast_forward == FF_NO)
1341 die(_("You cannot combine --squash with --no-ff."));
1342 if (option_commit > 0)
1343 die(_("You cannot combine --squash with --commit."));
1345 * squash can now silently disable option_commit - this is not
1346 * a problem as it is only overriding the default, not a user
1352 if (option_commit < 0)
1356 if (default_to_upstream)
1357 argc = setup_with_upstream(&argv);
1359 die(_("No commit specified and merge.defaultToUpstream not set."));
1360 } else if (argc == 1 && !strcmp(argv[0], "-")) {
1365 usage_with_options(builtin_merge_usage,
1366 builtin_merge_options);
1370 * If the merged head is a valid one there is no reason
1371 * to forbid "git merge" into a branch yet to be born.
1372 * We do the same for "git pull".
1374 struct object_id *remote_head_oid;
1376 die(_("Squash commit into empty head not supported yet"));
1377 if (fast_forward == FF_NO)
1378 die(_("Non-fast-forward commit does not make sense into "
1380 remoteheads = collect_parents(head_commit, &head_subsumed,
1383 die(_("%s - not something we can merge"), argv[0]);
1384 if (remoteheads->next)
1385 die(_("Can merge only exactly one commit into empty head"));
1387 if (verify_signatures)
1388 verify_merge_signature(remoteheads->item, verbosity);
1390 remote_head_oid = &remoteheads->item->object.oid;
1391 read_empty(remote_head_oid, 0);
1392 update_ref("initial pull", "HEAD", remote_head_oid, NULL, 0,
1393 UPDATE_REFS_DIE_ON_ERR);
1398 * All the rest are the commits being merged; prepare
1399 * the standard merge summary message to be appended
1400 * to the given message.
1402 remoteheads = collect_parents(head_commit, &head_subsumed,
1403 argc, argv, &merge_msg);
1405 if (!head_commit || !argc)
1406 usage_with_options(builtin_merge_usage,
1407 builtin_merge_options);
1409 if (verify_signatures) {
1410 for (p = remoteheads; p; p = p->next) {
1411 verify_merge_signature(p->item, verbosity);
1415 strbuf_addstr(&buf, "merge");
1416 for (p = remoteheads; p; p = p->next)
1417 strbuf_addf(&buf, " %s", merge_remote_util(p->item)->name);
1418 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1421 for (p = remoteheads; p; p = p->next) {
1422 struct commit *commit = p->item;
1423 strbuf_addf(&buf, "GITHEAD_%s",
1424 oid_to_hex(&commit->object.oid));
1425 setenv(buf.buf, merge_remote_util(commit)->name, 1);
1427 if (fast_forward != FF_ONLY && merging_a_throwaway_tag(commit))
1428 fast_forward = FF_NO;
1431 if (!use_strategies) {
1433 ; /* already up-to-date */
1434 else if (!remoteheads->next)
1435 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1437 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1440 for (i = 0; i < use_strategies_nr; i++) {
1441 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1442 fast_forward = FF_NO;
1443 if (use_strategies[i]->attr & NO_TRIVIAL)
1448 ; /* already up-to-date */
1449 else if (!remoteheads->next)
1450 common = get_merge_bases(head_commit, remoteheads->item);
1452 struct commit_list *list = remoteheads;
1453 commit_list_insert(head_commit, &list);
1454 common = get_octopus_merge_bases(list);
1458 update_ref("updating ORIG_HEAD", "ORIG_HEAD",
1459 &head_commit->object.oid, NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1461 if (remoteheads && !common) {
1462 /* No common ancestors found. */
1463 if (!allow_unrelated_histories)
1464 die(_("refusing to merge unrelated histories"));
1465 /* otherwise, we need a real merge. */
1466 } else if (!remoteheads ||
1467 (!remoteheads->next && !common->next &&
1468 common->item == remoteheads->item)) {
1470 * If head can reach all the merge then we are up to date.
1471 * but first the most common case of merging one remote.
1473 finish_up_to_date(_("Already up to date."));
1475 } else if (fast_forward != FF_NO && !remoteheads->next &&
1477 oideq(&common->item->object.oid, &head_commit->object.oid)) {
1478 /* Again the most common case of merging one remote. */
1479 struct strbuf msg = STRBUF_INIT;
1480 struct commit *commit;
1482 if (verbosity >= 0) {
1483 printf(_("Updating %s..%s\n"),
1484 find_unique_abbrev(&head_commit->object.oid,
1486 find_unique_abbrev(&remoteheads->item->object.oid,
1489 strbuf_addstr(&msg, "Fast-forward");
1492 " (no commit created; -m option ignored)");
1493 commit = remoteheads->item;
1499 if (checkout_fast_forward(the_repository,
1500 &head_commit->object.oid,
1501 &commit->object.oid,
1502 overwrite_ignore)) {
1507 finish(head_commit, remoteheads, &commit->object.oid, msg.buf);
1510 } else if (!remoteheads->next && common->next)
1513 * We are not doing octopus and not fast-forward. Need
1516 else if (!remoteheads->next && !common->next && option_commit) {
1518 * We are not doing octopus, not fast-forward, and have
1521 refresh_cache(REFRESH_QUIET);
1522 if (allow_trivial && fast_forward != FF_ONLY) {
1523 /* See if it is really trivial. */
1524 git_committer_info(IDENT_STRICT);
1525 printf(_("Trying really trivial in-index merge...\n"));
1526 if (!read_tree_trivial(&common->item->object.oid,
1527 &head_commit->object.oid,
1528 &remoteheads->item->object.oid)) {
1529 ret = merge_trivial(head_commit, remoteheads);
1532 printf(_("Nope.\n"));
1536 * An octopus. If we can reach all the remote we are up
1540 struct commit_list *j;
1542 for (j = remoteheads; j; j = j->next) {
1543 struct commit_list *common_one;
1546 * Here we *have* to calculate the individual
1547 * merge_bases again, otherwise "git merge HEAD^
1548 * HEAD^^" would be missed.
1550 common_one = get_merge_bases(head_commit, j->item);
1551 if (!oideq(&common_one->item->object.oid, &j->item->object.oid)) {
1557 finish_up_to_date(_("Already up to date. Yeeah!"));
1562 if (fast_forward == FF_ONLY)
1563 die(_("Not possible to fast-forward, aborting."));
1565 /* We are going to make a new commit. */
1566 git_committer_info(IDENT_STRICT);
1569 * At this point, we need a real merge. No matter what strategy
1570 * we use, it would operate on the index, possibly affecting the
1571 * working tree, and when resolved cleanly, have the desired
1572 * tree in the index -- this means that the index must be in
1573 * sync with the head commit. The strategies are responsible
1576 if (use_strategies_nr == 1 ||
1578 * Stash away the local changes so that we can try more than one.
1583 for (i = 0; i < use_strategies_nr; i++) {
1586 printf(_("Rewinding the tree to pristine...\n"));
1587 restore_state(&head_commit->object.oid, &stash);
1589 if (use_strategies_nr != 1)
1590 printf(_("Trying merge strategy %s...\n"),
1591 use_strategies[i]->name);
1593 * Remember which strategy left the state in the working
1596 wt_strategy = use_strategies[i]->name;
1598 ret = try_merge_strategy(use_strategies[i]->name,
1599 common, remoteheads,
1601 if (!option_commit && !ret) {
1604 * This is necessary here just to avoid writing
1605 * the tree, but later we will *not* exit with
1606 * status code 1 because merge_was_ok is set.
1613 * The backend exits with 1 when conflicts are
1614 * left to be resolved, with 2 when it does not
1615 * handle the given merge at all.
1618 int cnt = evaluate_result();
1620 if (best_cnt <= 0 || cnt <= best_cnt) {
1621 best_strategy = use_strategies[i]->name;
1631 /* Automerge succeeded. */
1632 write_tree_trivial(&result_tree);
1633 automerge_was_ok = 1;
1638 * If we have a resulting tree, that means the strategy module
1639 * auto resolved the merge cleanly.
1641 if (automerge_was_ok) {
1642 ret = finish_automerge(head_commit, head_subsumed,
1643 common, remoteheads,
1644 &result_tree, wt_strategy);
1649 * Pick the result from the best strategy and have the user fix
1652 if (!best_strategy) {
1653 restore_state(&head_commit->object.oid, &stash);
1654 if (use_strategies_nr > 1)
1656 _("No merge strategy handled the merge.\n"));
1658 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1659 use_strategies[0]->name);
1662 } else if (best_strategy == wt_strategy)
1663 ; /* We already have its result in the working tree. */
1665 printf(_("Rewinding the tree to pristine...\n"));
1666 restore_state(&head_commit->object.oid, &stash);
1667 printf(_("Using the %s to prepare resolving by hand.\n"),
1669 try_merge_strategy(best_strategy, common, remoteheads,
1674 finish(head_commit, remoteheads, NULL, NULL);
1676 write_merge_state(remoteheads);
1679 fprintf(stderr, _("Automatic merge went well; "
1680 "stopped before committing as requested\n"));
1682 ret = suggest_conflicts();
1685 free(branch_to_free);