4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
11 #include "parse-options.h"
14 #include "run-command.h"
20 #include "unpack-trees.h"
21 #include "cache-tree.h"
28 #include "merge-recursive.h"
29 #include "resolve-undo.h"
31 #include "fmt-merge-msg.h"
32 #include "gpg-interface.h"
33 #include "sequencer.h"
34 #include "string-list.h"
37 #define DEFAULT_TWOHEAD (1<<0)
38 #define DEFAULT_OCTOPUS (1<<1)
39 #define NO_FAST_FORWARD (1<<2)
40 #define NO_TRIVIAL (1<<3)
47 static const char * const builtin_merge_usage[] = {
48 N_("git merge [<options>] [<commit>...]"),
49 N_("git merge --abort"),
50 N_("git merge --continue"),
54 static int show_diffstat = 1, shortlog_len = -1, squash;
55 static int option_commit = 1;
56 static int option_edit = -1;
57 static int allow_trivial = 1, have_message, verify_signatures;
58 static int overwrite_ignore = 1;
59 static struct strbuf merge_msg = STRBUF_INIT;
60 static struct strategy **use_strategies;
61 static size_t use_strategies_nr, use_strategies_alloc;
62 static const char **xopts;
63 static size_t xopts_nr, xopts_alloc;
64 static const char *branch;
65 static char *branch_mergeoptions;
66 static int option_renormalize;
68 static int allow_rerere_auto;
69 static int abort_current_merge;
70 static int continue_current_merge;
71 static int allow_unrelated_histories;
72 static int show_progress = -1;
73 static int default_to_upstream = 1;
75 static const char *sign_commit;
77 static struct strategy all_strategy[] = {
78 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
79 { "octopus", DEFAULT_OCTOPUS },
81 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
82 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
85 static const char *pull_twohead, *pull_octopus;
93 static enum ff_type fast_forward = FF_ALLOW;
95 static int option_parse_message(const struct option *opt,
96 const char *arg, int unset)
98 struct strbuf *buf = opt->value;
101 strbuf_setlen(buf, 0);
103 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
106 return error(_("switch `m' requires a value"));
110 static struct strategy *get_strategy(const char *name)
113 struct strategy *ret;
114 static struct cmdnames main_cmds, other_cmds;
120 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
121 if (!strcmp(name, all_strategy[i].name))
122 return &all_strategy[i];
125 struct cmdnames not_strategies;
128 memset(¬_strategies, 0, sizeof(struct cmdnames));
129 load_command_list("git-merge-", &main_cmds, &other_cmds);
130 for (i = 0; i < main_cmds.cnt; i++) {
132 struct cmdname *ent = main_cmds.names[i];
133 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
134 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
135 && !all_strategy[j].name[ent->len])
138 add_cmdname(¬_strategies, ent->name, ent->len);
140 exclude_cmds(&main_cmds, ¬_strategies);
142 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
143 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
144 fprintf(stderr, _("Available strategies are:"));
145 for (i = 0; i < main_cmds.cnt; i++)
146 fprintf(stderr, " %s", main_cmds.names[i]->name);
147 fprintf(stderr, ".\n");
148 if (other_cmds.cnt) {
149 fprintf(stderr, _("Available custom strategies are:"));
150 for (i = 0; i < other_cmds.cnt; i++)
151 fprintf(stderr, " %s", other_cmds.names[i]->name);
152 fprintf(stderr, ".\n");
157 ret = xcalloc(1, sizeof(struct strategy));
158 ret->name = xstrdup(name);
159 ret->attr = NO_TRIVIAL;
163 static void append_strategy(struct strategy *s)
165 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
166 use_strategies[use_strategies_nr++] = s;
169 static int option_parse_strategy(const struct option *opt,
170 const char *name, int unset)
175 append_strategy(get_strategy(name));
179 static int option_parse_x(const struct option *opt,
180 const char *arg, int unset)
185 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
186 xopts[xopts_nr++] = xstrdup(arg);
190 static int option_parse_n(const struct option *opt,
191 const char *arg, int unset)
193 show_diffstat = unset;
197 static struct option builtin_merge_options[] = {
198 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
199 N_("do not show a diffstat at the end of the merge"),
200 PARSE_OPT_NOARG, option_parse_n },
201 OPT_BOOL(0, "stat", &show_diffstat,
202 N_("show a diffstat at the end of the merge")),
203 OPT_BOOL(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
204 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
205 N_("add (at most <n>) entries from shortlog to merge commit message"),
206 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
207 OPT_BOOL(0, "squash", &squash,
208 N_("create a single commit instead of doing a merge")),
209 OPT_BOOL(0, "commit", &option_commit,
210 N_("perform a commit if the merge succeeds (default)")),
211 OPT_BOOL('e', "edit", &option_edit,
212 N_("edit message before committing")),
213 OPT_SET_INT(0, "ff", &fast_forward, N_("allow fast-forward (default)"), FF_ALLOW),
214 { OPTION_SET_INT, 0, "ff-only", &fast_forward, NULL,
215 N_("abort if fast-forward is not possible"),
216 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, FF_ONLY },
217 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
218 OPT_BOOL(0, "verify-signatures", &verify_signatures,
219 N_("verify that the named commit has a valid GPG signature")),
220 OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
221 N_("merge strategy to use"), option_parse_strategy),
222 OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),
223 N_("option for selected merge strategy"), option_parse_x),
224 OPT_CALLBACK('m', "message", &merge_msg, N_("message"),
225 N_("merge commit message (for a non-fast-forward merge)"),
226 option_parse_message),
227 OPT__VERBOSITY(&verbosity),
228 OPT_BOOL(0, "abort", &abort_current_merge,
229 N_("abort the current in-progress merge")),
230 OPT_BOOL(0, "continue", &continue_current_merge,
231 N_("continue the current in-progress merge")),
232 OPT_BOOL(0, "allow-unrelated-histories", &allow_unrelated_histories,
233 N_("allow merging unrelated histories")),
234 OPT_SET_INT(0, "progress", &show_progress, N_("force progress reporting"), 1),
235 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
236 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
237 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore, N_("update ignored files (default)")),
238 OPT_BOOL(0, "signoff", &signoff, N_("add Signed-off-by:")),
242 /* Cleans up metadata that is uninteresting after a succeeded merge. */
243 static void drop_save(void)
245 unlink(git_path_merge_head());
246 unlink(git_path_merge_msg());
247 unlink(git_path_merge_mode());
250 static int save_state(struct object_id *stash)
253 struct child_process cp = CHILD_PROCESS_INIT;
254 struct strbuf buffer = STRBUF_INIT;
255 const char *argv[] = {"stash", "create", NULL};
261 if (start_command(&cp))
262 die(_("could not run stash."));
263 len = strbuf_read(&buffer, cp.out, 1024);
266 if (finish_command(&cp) || len < 0)
267 die(_("stash failed"));
268 else if (!len) /* no changes */
270 strbuf_setlen(&buffer, buffer.len-1);
271 if (get_oid(buffer.buf, stash))
272 die(_("not a valid object: %s"), buffer.buf);
276 static void read_empty(unsigned const char *sha1, int verbose)
281 args[i++] = "read-tree";
286 args[i++] = EMPTY_TREE_SHA1_HEX;
287 args[i++] = sha1_to_hex(sha1);
290 if (run_command_v_opt(args, RUN_GIT_CMD))
291 die(_("read-tree failed"));
294 static void reset_hard(unsigned const char *sha1, int verbose)
299 args[i++] = "read-tree";
302 args[i++] = "--reset";
304 args[i++] = sha1_to_hex(sha1);
307 if (run_command_v_opt(args, RUN_GIT_CMD))
308 die(_("read-tree failed"));
311 static void restore_state(const struct object_id *head,
312 const struct object_id *stash)
314 struct strbuf sb = STRBUF_INIT;
315 const char *args[] = { "stash", "apply", NULL, NULL };
317 if (is_null_oid(stash))
320 reset_hard(head->hash, 1);
322 args[2] = oid_to_hex(stash);
325 * It is OK to ignore error here, for example when there was
326 * nothing to restore.
328 run_command_v_opt(args, RUN_GIT_CMD);
331 refresh_cache(REFRESH_QUIET);
334 /* This is called when no merge was necessary. */
335 static void finish_up_to_date(const char *msg)
338 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
342 static void squash_message(struct commit *commit, struct commit_list *remoteheads)
345 struct strbuf out = STRBUF_INIT;
346 struct commit_list *j;
347 struct pretty_print_context ctx = {0};
349 printf(_("Squash commit -- not updating HEAD\n"));
351 init_revisions(&rev, NULL);
352 rev.ignore_merges = 1;
353 rev.commit_format = CMIT_FMT_MEDIUM;
355 commit->object.flags |= UNINTERESTING;
356 add_pending_object(&rev, &commit->object, NULL);
358 for (j = remoteheads; j; j = j->next)
359 add_pending_object(&rev, &j->item->object, NULL);
361 setup_revisions(0, NULL, &rev, NULL);
362 if (prepare_revision_walk(&rev))
363 die(_("revision walk setup failed"));
365 ctx.abbrev = rev.abbrev;
366 ctx.date_mode = rev.date_mode;
367 ctx.fmt = rev.commit_format;
369 strbuf_addstr(&out, "Squashed commit of the following:\n");
370 while ((commit = get_revision(&rev)) != NULL) {
371 strbuf_addch(&out, '\n');
372 strbuf_addf(&out, "commit %s\n",
373 oid_to_hex(&commit->object.oid));
374 pretty_print_commit(&ctx, commit, &out);
376 write_file_buf(git_path_squash_msg(), out.buf, out.len);
377 strbuf_release(&out);
380 static void finish(struct commit *head_commit,
381 struct commit_list *remoteheads,
382 const struct object_id *new_head, const char *msg)
384 struct strbuf reflog_message = STRBUF_INIT;
385 const struct object_id *head = &head_commit->object.oid;
388 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
392 strbuf_addf(&reflog_message, "%s: %s",
393 getenv("GIT_REFLOG_ACTION"), msg);
396 squash_message(head_commit, remoteheads);
398 if (verbosity >= 0 && !merge_msg.len)
399 printf(_("No merge message -- not updating HEAD\n"));
401 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
402 update_ref(reflog_message.buf, "HEAD",
403 new_head->hash, head->hash, 0,
404 UPDATE_REFS_DIE_ON_ERR);
406 * We ignore errors in 'gc --auto', since the
407 * user should see them.
410 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
413 if (new_head && show_diffstat) {
414 struct diff_options opts;
416 opts.stat_width = -1; /* use full terminal width */
417 opts.stat_graph_width = -1; /* respect statGraphWidth config */
418 opts.output_format |=
419 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
420 opts.detect_rename = DIFF_DETECT_RENAME;
421 diff_setup_done(&opts);
422 diff_tree_oid(head, new_head, "", &opts);
427 /* Run a post-merge hook */
428 run_hook_le(NULL, "post-merge", squash ? "1" : "0", NULL);
430 strbuf_release(&reflog_message);
433 /* Get the name for the merge commit's message. */
434 static void merge_name(const char *remote, struct strbuf *msg)
436 struct commit *remote_head;
437 struct object_id branch_head;
438 struct strbuf buf = STRBUF_INIT;
439 struct strbuf bname = STRBUF_INIT;
444 strbuf_branchname(&bname, remote, 0);
447 oidclr(&branch_head);
448 remote_head = get_merge_parent(remote);
450 die(_("'%s' does not point to a commit"), remote);
452 if (dwim_ref(remote, strlen(remote), branch_head.hash, &found_ref) > 0) {
453 if (starts_with(found_ref, "refs/heads/")) {
454 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
455 oid_to_hex(&branch_head), remote);
458 if (starts_with(found_ref, "refs/tags/")) {
459 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
460 oid_to_hex(&branch_head), remote);
463 if (starts_with(found_ref, "refs/remotes/")) {
464 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
465 oid_to_hex(&branch_head), remote);
470 /* See if remote matches <name>^^^.. or <name>~<number> */
471 for (len = 0, ptr = remote + strlen(remote);
472 remote < ptr && ptr[-1] == '^';
479 ptr = strrchr(remote, '~');
481 int seen_nonzero = 0;
484 while (*++ptr && isdigit(*ptr)) {
485 seen_nonzero |= (*ptr != '0');
489 len = 0; /* not ...~<number> */
490 else if (seen_nonzero)
493 early = 1; /* "name~" is "name~1"! */
497 struct strbuf truname = STRBUF_INIT;
498 strbuf_addf(&truname, "refs/heads/%s", remote);
499 strbuf_setlen(&truname, truname.len - len);
500 if (ref_exists(truname.buf)) {
502 "%s\t\tbranch '%s'%s of .\n",
503 oid_to_hex(&remote_head->object.oid),
505 (early ? " (early part)" : ""));
506 strbuf_release(&truname);
509 strbuf_release(&truname);
512 if (remote_head->util) {
513 struct merge_remote_desc *desc;
514 desc = merge_remote_util(remote_head);
515 if (desc && desc->obj && desc->obj->type == OBJ_TAG) {
516 strbuf_addf(msg, "%s\t\t%s '%s'\n",
517 oid_to_hex(&desc->obj->oid),
518 typename(desc->obj->type),
524 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
525 oid_to_hex(&remote_head->object.oid), remote);
527 strbuf_release(&buf);
528 strbuf_release(&bname);
531 static void parse_branch_merge_options(char *bmo)
538 argc = split_cmdline(bmo, &argv);
540 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
541 split_cmdline_strerror(argc));
542 REALLOC_ARRAY(argv, argc + 2);
543 MOVE_ARRAY(argv + 1, argv, argc + 1);
545 argv[0] = "branch.*.mergeoptions";
546 parse_options(argc, argv, NULL, builtin_merge_options,
547 builtin_merge_usage, 0);
551 static int git_merge_config(const char *k, const char *v, void *cb)
555 if (branch && starts_with(k, "branch.") &&
556 starts_with(k + 7, branch) &&
557 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
558 free(branch_mergeoptions);
559 branch_mergeoptions = xstrdup(v);
563 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
564 show_diffstat = git_config_bool(k, v);
565 else if (!strcmp(k, "pull.twohead"))
566 return git_config_string(&pull_twohead, k, v);
567 else if (!strcmp(k, "pull.octopus"))
568 return git_config_string(&pull_octopus, k, v);
569 else if (!strcmp(k, "merge.renormalize"))
570 option_renormalize = git_config_bool(k, v);
571 else if (!strcmp(k, "merge.ff")) {
572 int boolval = git_parse_maybe_bool(v);
574 fast_forward = boolval ? FF_ALLOW : FF_NO;
575 } else if (v && !strcmp(v, "only")) {
576 fast_forward = FF_ONLY;
577 } /* do not barf on values from future versions of git */
579 } else if (!strcmp(k, "merge.defaulttoupstream")) {
580 default_to_upstream = git_config_bool(k, v);
582 } else if (!strcmp(k, "commit.gpgsign")) {
583 sign_commit = git_config_bool(k, v) ? "" : NULL;
587 status = fmt_merge_msg_config(k, v, cb);
590 status = git_gpg_config(k, v, NULL);
593 return git_diff_ui_config(k, v, cb);
596 static int read_tree_trivial(struct object_id *common, struct object_id *head,
597 struct object_id *one)
600 struct tree *trees[MAX_UNPACK_TREES];
601 struct tree_desc t[MAX_UNPACK_TREES];
602 struct unpack_trees_options opts;
604 memset(&opts, 0, sizeof(opts));
606 opts.src_index = &the_index;
607 opts.dst_index = &the_index;
609 opts.verbose_update = 1;
610 opts.trivial_merges_only = 1;
612 trees[nr_trees] = parse_tree_indirect(common);
613 if (!trees[nr_trees++])
615 trees[nr_trees] = parse_tree_indirect(head);
616 if (!trees[nr_trees++])
618 trees[nr_trees] = parse_tree_indirect(one);
619 if (!trees[nr_trees++])
621 opts.fn = threeway_merge;
622 cache_tree_free(&active_cache_tree);
623 for (i = 0; i < nr_trees; i++) {
624 parse_tree(trees[i]);
625 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
627 if (unpack_trees(nr_trees, t, &opts))
632 static void write_tree_trivial(struct object_id *oid)
634 if (write_cache_as_tree(oid->hash, 0, NULL))
635 die(_("git write-tree failed to write a tree"));
638 static int try_merge_strategy(const char *strategy, struct commit_list *common,
639 struct commit_list *remoteheads,
642 static struct lock_file lock;
643 const char *head_arg = "HEAD";
645 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
646 refresh_cache(REFRESH_QUIET);
647 if (active_cache_changed &&
648 write_locked_index(&the_index, &lock, COMMIT_LOCK))
649 return error(_("Unable to write index."));
650 rollback_lock_file(&lock);
652 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
654 struct commit *result;
655 struct commit_list *reversed = NULL;
656 struct merge_options o;
657 struct commit_list *j;
659 if (remoteheads->next) {
660 error(_("Not handling anything other than two heads merge."));
664 init_merge_options(&o);
665 if (!strcmp(strategy, "subtree"))
666 o.subtree_shift = "";
668 o.renormalize = option_renormalize;
669 o.show_rename_progress =
670 show_progress == -1 ? isatty(2) : show_progress;
672 for (x = 0; x < xopts_nr; x++)
673 if (parse_merge_opt(&o, xopts[x]))
674 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
676 o.branch1 = head_arg;
677 o.branch2 = merge_remote_util(remoteheads->item)->name;
679 for (j = common; j; j = j->next)
680 commit_list_insert(j->item, &reversed);
682 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
683 clean = merge_recursive(&o, head,
684 remoteheads->item, reversed, &result);
687 if (active_cache_changed &&
688 write_locked_index(&the_index, &lock, COMMIT_LOCK))
689 die (_("unable to write %s"), get_index_file());
690 rollback_lock_file(&lock);
691 return clean ? 0 : 1;
693 return try_merge_command(strategy, xopts_nr, xopts,
694 common, head_arg, remoteheads);
698 static void count_diff_files(struct diff_queue_struct *q,
699 struct diff_options *opt, void *data)
706 static int count_unmerged_entries(void)
710 for (i = 0; i < active_nr; i++)
711 if (ce_stage(active_cache[i]))
717 static void add_strategies(const char *string, unsigned attr)
722 struct string_list list = STRING_LIST_INIT_DUP;
723 struct string_list_item *item;
724 string_list_split(&list, string, ' ', -1);
725 for_each_string_list_item(item, &list)
726 append_strategy(get_strategy(item->string));
727 string_list_clear(&list, 0);
730 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
731 if (all_strategy[i].attr & attr)
732 append_strategy(&all_strategy[i]);
736 static void read_merge_msg(struct strbuf *msg)
738 const char *filename = git_path_merge_msg();
740 if (strbuf_read_file(msg, filename, 0) < 0)
741 die_errno(_("Could not read from '%s'"), filename);
744 static void write_merge_state(struct commit_list *);
745 static void abort_commit(struct commit_list *remoteheads, const char *err_msg)
748 error("%s", err_msg);
750 _("Not committing merge; use 'git commit' to complete the merge.\n"));
751 write_merge_state(remoteheads);
755 static const char merge_editor_comment[] =
756 N_("Please enter a commit message to explain why this merge is necessary,\n"
757 "especially if it merges an updated upstream into a topic branch.\n"
759 "Lines starting with '%c' will be ignored, and an empty message aborts\n"
762 static void prepare_to_commit(struct commit_list *remoteheads)
764 struct strbuf msg = STRBUF_INIT;
765 strbuf_addbuf(&msg, &merge_msg);
766 strbuf_addch(&msg, '\n');
768 strbuf_commented_addf(&msg, _(merge_editor_comment), comment_line_char);
770 append_signoff(&msg, ignore_non_trailer(msg.buf, msg.len), 0);
771 write_file_buf(git_path_merge_msg(), msg.buf, msg.len);
772 if (run_commit_hook(0 < option_edit, get_index_file(), "prepare-commit-msg",
773 git_path_merge_msg(), "merge", NULL))
774 abort_commit(remoteheads, NULL);
775 if (0 < option_edit) {
776 if (launch_editor(git_path_merge_msg(), NULL, NULL))
777 abort_commit(remoteheads, NULL);
779 read_merge_msg(&msg);
780 strbuf_stripspace(&msg, 0 < option_edit);
782 abort_commit(remoteheads, _("Empty commit message."));
783 strbuf_release(&merge_msg);
784 strbuf_addbuf(&merge_msg, &msg);
785 strbuf_release(&msg);
788 static int merge_trivial(struct commit *head, struct commit_list *remoteheads)
790 struct object_id result_tree, result_commit;
791 struct commit_list *parents, **pptr = &parents;
792 static struct lock_file lock;
794 hold_locked_index(&lock, LOCK_DIE_ON_ERROR);
795 refresh_cache(REFRESH_QUIET);
796 if (active_cache_changed &&
797 write_locked_index(&the_index, &lock, COMMIT_LOCK))
798 return error(_("Unable to write index."));
799 rollback_lock_file(&lock);
801 write_tree_trivial(&result_tree);
802 printf(_("Wonderful.\n"));
803 pptr = commit_list_append(head, pptr);
804 pptr = commit_list_append(remoteheads->item, pptr);
805 prepare_to_commit(remoteheads);
806 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree.hash, parents,
807 result_commit.hash, NULL, sign_commit))
808 die(_("failed to write commit object"));
809 finish(head, remoteheads, &result_commit, "In-index merge");
814 static int finish_automerge(struct commit *head,
816 struct commit_list *common,
817 struct commit_list *remoteheads,
818 struct object_id *result_tree,
819 const char *wt_strategy)
821 struct commit_list *parents = NULL;
822 struct strbuf buf = STRBUF_INIT;
823 struct object_id result_commit;
825 free_commit_list(common);
826 parents = remoteheads;
827 if (!head_subsumed || fast_forward == FF_NO)
828 commit_list_insert(head, &parents);
829 strbuf_addch(&merge_msg, '\n');
830 prepare_to_commit(remoteheads);
831 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree->hash, parents,
832 result_commit.hash, NULL, sign_commit))
833 die(_("failed to write commit object"));
834 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
835 finish(head, remoteheads, &result_commit, buf.buf);
836 strbuf_release(&buf);
841 static int suggest_conflicts(void)
843 const char *filename;
845 struct strbuf msgbuf = STRBUF_INIT;
847 filename = git_path_merge_msg();
848 fp = xfopen(filename, "a");
850 append_conflicts_hint(&msgbuf);
851 fputs(msgbuf.buf, fp);
852 strbuf_release(&msgbuf);
854 rerere(allow_rerere_auto);
855 printf(_("Automatic merge failed; "
856 "fix conflicts and then commit the result.\n"));
860 static int evaluate_result(void)
865 /* Check how many files differ. */
866 init_revisions(&rev, "");
867 setup_revisions(0, NULL, &rev, NULL);
868 rev.diffopt.output_format |=
869 DIFF_FORMAT_CALLBACK;
870 rev.diffopt.format_callback = count_diff_files;
871 rev.diffopt.format_callback_data = &cnt;
872 run_diff_files(&rev, 0);
875 * Check how many unmerged entries are
878 cnt += count_unmerged_entries();
884 * Pretend as if the user told us to merge with the remote-tracking
885 * branch we have for the upstream of the current branch
887 static int setup_with_upstream(const char ***argv)
889 struct branch *branch = branch_get(NULL);
894 die(_("No current branch."));
895 if (!branch->remote_name)
896 die(_("No remote for the current branch."));
897 if (!branch->merge_nr)
898 die(_("No default upstream defined for the current branch."));
900 args = xcalloc(st_add(branch->merge_nr, 1), sizeof(char *));
901 for (i = 0; i < branch->merge_nr; i++) {
902 if (!branch->merge[i]->dst)
903 die(_("No remote-tracking branch for %s from %s"),
904 branch->merge[i]->src, branch->remote_name);
905 args[i] = branch->merge[i]->dst;
912 static void write_merge_state(struct commit_list *remoteheads)
914 struct commit_list *j;
915 struct strbuf buf = STRBUF_INIT;
917 for (j = remoteheads; j; j = j->next) {
918 struct object_id *oid;
919 struct commit *c = j->item;
920 if (c->util && merge_remote_util(c)->obj) {
921 oid = &merge_remote_util(c)->obj->oid;
923 oid = &c->object.oid;
925 strbuf_addf(&buf, "%s\n", oid_to_hex(oid));
927 write_file_buf(git_path_merge_head(), buf.buf, buf.len);
928 strbuf_addch(&merge_msg, '\n');
929 write_file_buf(git_path_merge_msg(), merge_msg.buf, merge_msg.len);
932 if (fast_forward == FF_NO)
933 strbuf_addstr(&buf, "no-ff");
934 write_file_buf(git_path_merge_mode(), buf.buf, buf.len);
937 static int default_edit_option(void)
939 static const char name[] = "GIT_MERGE_AUTOEDIT";
940 const char *e = getenv(name);
941 struct stat st_stdin, st_stdout;
944 /* an explicit -m msg without --[no-]edit */
948 int v = git_parse_maybe_bool(e);
950 die(_("Bad value '%s' in environment '%s'"), e, name);
954 /* Use editor if stdin and stdout are the same and is a tty */
955 return (!fstat(0, &st_stdin) &&
956 !fstat(1, &st_stdout) &&
957 isatty(0) && isatty(1) &&
958 st_stdin.st_dev == st_stdout.st_dev &&
959 st_stdin.st_ino == st_stdout.st_ino &&
960 st_stdin.st_mode == st_stdout.st_mode);
963 static struct commit_list *reduce_parents(struct commit *head_commit,
965 struct commit_list *remoteheads)
967 struct commit_list *parents, **remotes;
970 * Is the current HEAD reachable from another commit being
971 * merged? If so we do not want to record it as a parent of
972 * the resulting merge, unless --no-ff is given. We will flip
973 * this variable to 0 when we find HEAD among the independent
978 /* Find what parents to record by checking independent ones. */
979 parents = reduce_heads(remoteheads);
982 remotes = &remoteheads;
984 struct commit *commit = pop_commit(&parents);
985 if (commit == head_commit)
988 remotes = &commit_list_insert(commit, remotes)->next;
993 static void prepare_merge_message(struct strbuf *merge_names, struct strbuf *merge_msg)
995 struct fmt_merge_msg_opts opts;
997 memset(&opts, 0, sizeof(opts));
998 opts.add_title = !have_message;
999 opts.shortlog_len = shortlog_len;
1000 opts.credit_people = (0 < option_edit);
1002 fmt_merge_msg(merge_names, merge_msg, &opts);
1004 strbuf_setlen(merge_msg, merge_msg->len - 1);
1007 static void handle_fetch_head(struct commit_list **remotes, struct strbuf *merge_names)
1009 const char *filename;
1011 struct strbuf fetch_head_file = STRBUF_INIT;
1014 merge_names = &fetch_head_file;
1016 filename = git_path_fetch_head();
1017 fd = open(filename, O_RDONLY);
1019 die_errno(_("could not open '%s' for reading"), filename);
1021 if (strbuf_read(merge_names, fd, 0) < 0)
1022 die_errno(_("could not read '%s'"), filename);
1024 die_errno(_("could not close '%s'"), filename);
1026 for (pos = 0; pos < merge_names->len; pos = npos) {
1027 struct object_id oid;
1029 struct commit *commit;
1031 ptr = strchr(merge_names->buf + pos, '\n');
1033 npos = ptr - merge_names->buf + 1;
1035 npos = merge_names->len;
1037 if (npos - pos < GIT_SHA1_HEXSZ + 2 ||
1038 get_oid_hex(merge_names->buf + pos, &oid))
1039 commit = NULL; /* bad */
1040 else if (memcmp(merge_names->buf + pos + GIT_SHA1_HEXSZ, "\t\t", 2))
1041 continue; /* not-for-merge */
1043 char saved = merge_names->buf[pos + GIT_SHA1_HEXSZ];
1044 merge_names->buf[pos + GIT_SHA1_HEXSZ] = '\0';
1045 commit = get_merge_parent(merge_names->buf + pos);
1046 merge_names->buf[pos + GIT_SHA1_HEXSZ] = saved;
1051 die(_("not something we can merge in %s: %s"),
1052 filename, merge_names->buf + pos);
1054 remotes = &commit_list_insert(commit, remotes)->next;
1057 if (merge_names == &fetch_head_file)
1058 strbuf_release(&fetch_head_file);
1061 static struct commit_list *collect_parents(struct commit *head_commit,
1063 int argc, const char **argv,
1064 struct strbuf *merge_msg)
1067 struct commit_list *remoteheads = NULL;
1068 struct commit_list **remotes = &remoteheads;
1069 struct strbuf merge_names = STRBUF_INIT, *autogen = NULL;
1071 if (merge_msg && (!have_message || shortlog_len))
1072 autogen = &merge_names;
1075 remotes = &commit_list_insert(head_commit, remotes)->next;
1077 if (argc == 1 && !strcmp(argv[0], "FETCH_HEAD")) {
1078 handle_fetch_head(remotes, autogen);
1079 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1081 for (i = 0; i < argc; i++) {
1082 struct commit *commit = get_merge_parent(argv[i]);
1084 help_unknown_ref(argv[i], "merge",
1085 _("not something we can merge"));
1086 remotes = &commit_list_insert(commit, remotes)->next;
1088 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1090 struct commit_list *p;
1091 for (p = remoteheads; p; p = p->next)
1092 merge_name(merge_remote_util(p->item)->name, autogen);
1097 prepare_merge_message(autogen, merge_msg);
1098 strbuf_release(autogen);
1104 int cmd_merge(int argc, const char **argv, const char *prefix)
1106 struct object_id result_tree, stash, head_oid;
1107 struct commit *head_commit;
1108 struct strbuf buf = STRBUF_INIT;
1109 int i, ret = 0, head_subsumed;
1110 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1111 struct commit_list *common = NULL;
1112 const char *best_strategy = NULL, *wt_strategy = NULL;
1113 struct commit_list *remoteheads, *p;
1114 void *branch_to_free;
1115 int orig_argc = argc;
1117 if (argc == 2 && !strcmp(argv[1], "-h"))
1118 usage_with_options(builtin_merge_usage, builtin_merge_options);
1121 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1124 branch = branch_to_free = resolve_refdup("HEAD", 0, head_oid.hash, NULL);
1126 skip_prefix(branch, "refs/heads/", &branch);
1127 if (!branch || is_null_oid(&head_oid))
1130 head_commit = lookup_commit_or_die(&head_oid, "HEAD");
1132 init_diff_ui_defaults();
1133 git_config(git_merge_config, NULL);
1135 if (branch_mergeoptions)
1136 parse_branch_merge_options(branch_mergeoptions);
1137 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1138 builtin_merge_usage, 0);
1139 if (shortlog_len < 0)
1140 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
1142 if (verbosity < 0 && show_progress == -1)
1145 if (abort_current_merge) {
1147 const char *nargv[] = {"reset", "--merge", NULL};
1150 usage_msg_opt(_("--abort expects no arguments"),
1151 builtin_merge_usage, builtin_merge_options);
1153 if (!file_exists(git_path_merge_head()))
1154 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1156 /* Invoke 'git reset --merge' */
1157 ret = cmd_reset(nargc, nargv, prefix);
1161 if (continue_current_merge) {
1163 const char *nargv[] = {"commit", NULL};
1166 usage_msg_opt(_("--continue expects no arguments"),
1167 builtin_merge_usage, builtin_merge_options);
1169 if (!file_exists(git_path_merge_head()))
1170 die(_("There is no merge in progress (MERGE_HEAD missing)."));
1172 /* Invoke 'git commit' */
1173 ret = cmd_commit(nargc, nargv, prefix);
1177 if (read_cache_unmerged())
1178 die_resolve_conflict("merge");
1180 if (file_exists(git_path_merge_head())) {
1182 * There is no unmerged entry, don't advise 'git
1183 * add/rm <file>', just 'git commit'.
1185 if (advice_resolve_conflict)
1186 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1187 "Please, commit your changes before you merge."));
1189 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1191 if (file_exists(git_path_cherry_pick_head())) {
1192 if (advice_resolve_conflict)
1193 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1194 "Please, commit your changes before you merge."));
1196 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1198 resolve_undo_clear();
1204 if (fast_forward == FF_NO)
1205 die(_("You cannot combine --squash with --no-ff."));
1210 if (default_to_upstream)
1211 argc = setup_with_upstream(&argv);
1213 die(_("No commit specified and merge.defaultToUpstream not set."));
1214 } else if (argc == 1 && !strcmp(argv[0], "-")) {
1219 usage_with_options(builtin_merge_usage,
1220 builtin_merge_options);
1224 * If the merged head is a valid one there is no reason
1225 * to forbid "git merge" into a branch yet to be born.
1226 * We do the same for "git pull".
1228 struct object_id *remote_head_oid;
1230 die(_("Squash commit into empty head not supported yet"));
1231 if (fast_forward == FF_NO)
1232 die(_("Non-fast-forward commit does not make sense into "
1234 remoteheads = collect_parents(head_commit, &head_subsumed,
1237 die(_("%s - not something we can merge"), argv[0]);
1238 if (remoteheads->next)
1239 die(_("Can merge only exactly one commit into empty head"));
1240 remote_head_oid = &remoteheads->item->object.oid;
1241 read_empty(remote_head_oid->hash, 0);
1242 update_ref("initial pull", "HEAD", remote_head_oid->hash,
1243 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1248 * All the rest are the commits being merged; prepare
1249 * the standard merge summary message to be appended
1250 * to the given message.
1252 remoteheads = collect_parents(head_commit, &head_subsumed,
1253 argc, argv, &merge_msg);
1255 if (!head_commit || !argc)
1256 usage_with_options(builtin_merge_usage,
1257 builtin_merge_options);
1259 if (verify_signatures) {
1260 for (p = remoteheads; p; p = p->next) {
1261 struct commit *commit = p->item;
1262 char hex[GIT_MAX_HEXSZ + 1];
1263 struct signature_check signature_check;
1264 memset(&signature_check, 0, sizeof(signature_check));
1266 check_commit_signature(commit, &signature_check);
1268 find_unique_abbrev_r(hex, commit->object.oid.hash, DEFAULT_ABBREV);
1269 switch (signature_check.result) {
1273 die(_("Commit %s has an untrusted GPG signature, "
1274 "allegedly by %s."), hex, signature_check.signer);
1276 die(_("Commit %s has a bad GPG signature "
1277 "allegedly by %s."), hex, signature_check.signer);
1279 die(_("Commit %s does not have a GPG signature."), hex);
1281 if (verbosity >= 0 && signature_check.result == 'G')
1282 printf(_("Commit %s has a good GPG signature by %s\n"),
1283 hex, signature_check.signer);
1285 signature_check_clear(&signature_check);
1289 strbuf_addstr(&buf, "merge");
1290 for (p = remoteheads; p; p = p->next)
1291 strbuf_addf(&buf, " %s", merge_remote_util(p->item)->name);
1292 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1295 for (p = remoteheads; p; p = p->next) {
1296 struct commit *commit = p->item;
1297 strbuf_addf(&buf, "GITHEAD_%s",
1298 oid_to_hex(&commit->object.oid));
1299 setenv(buf.buf, merge_remote_util(commit)->name, 1);
1301 if (fast_forward != FF_ONLY &&
1302 merge_remote_util(commit) &&
1303 merge_remote_util(commit)->obj &&
1304 merge_remote_util(commit)->obj->type == OBJ_TAG)
1305 fast_forward = FF_NO;
1308 if (option_edit < 0)
1309 option_edit = default_edit_option();
1311 if (!use_strategies) {
1313 ; /* already up-to-date */
1314 else if (!remoteheads->next)
1315 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1317 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1320 for (i = 0; i < use_strategies_nr; i++) {
1321 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1322 fast_forward = FF_NO;
1323 if (use_strategies[i]->attr & NO_TRIVIAL)
1328 ; /* already up-to-date */
1329 else if (!remoteheads->next)
1330 common = get_merge_bases(head_commit, remoteheads->item);
1332 struct commit_list *list = remoteheads;
1333 commit_list_insert(head_commit, &list);
1334 common = get_octopus_merge_bases(list);
1338 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head_commit->object.oid.hash,
1339 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1341 if (remoteheads && !common) {
1342 /* No common ancestors found. */
1343 if (!allow_unrelated_histories)
1344 die(_("refusing to merge unrelated histories"));
1345 /* otherwise, we need a real merge. */
1346 } else if (!remoteheads ||
1347 (!remoteheads->next && !common->next &&
1348 common->item == remoteheads->item)) {
1350 * If head can reach all the merge then we are up to date.
1351 * but first the most common case of merging one remote.
1353 finish_up_to_date(_("Already up-to-date."));
1355 } else if (fast_forward != FF_NO && !remoteheads->next &&
1357 !oidcmp(&common->item->object.oid, &head_commit->object.oid)) {
1358 /* Again the most common case of merging one remote. */
1359 struct strbuf msg = STRBUF_INIT;
1360 struct commit *commit;
1362 if (verbosity >= 0) {
1363 printf(_("Updating %s..%s\n"),
1364 find_unique_abbrev(head_commit->object.oid.hash,
1366 find_unique_abbrev(remoteheads->item->object.oid.hash,
1369 strbuf_addstr(&msg, "Fast-forward");
1372 " (no commit created; -m option ignored)");
1373 commit = remoteheads->item;
1379 if (checkout_fast_forward(&head_commit->object.oid,
1380 &commit->object.oid,
1381 overwrite_ignore)) {
1386 finish(head_commit, remoteheads, &commit->object.oid, msg.buf);
1389 } else if (!remoteheads->next && common->next)
1392 * We are not doing octopus and not fast-forward. Need
1395 else if (!remoteheads->next && !common->next && option_commit) {
1397 * We are not doing octopus, not fast-forward, and have
1400 refresh_cache(REFRESH_QUIET);
1401 if (allow_trivial && fast_forward != FF_ONLY) {
1402 /* See if it is really trivial. */
1403 git_committer_info(IDENT_STRICT);
1404 printf(_("Trying really trivial in-index merge...\n"));
1405 if (!read_tree_trivial(&common->item->object.oid,
1406 &head_commit->object.oid,
1407 &remoteheads->item->object.oid)) {
1408 ret = merge_trivial(head_commit, remoteheads);
1411 printf(_("Nope.\n"));
1415 * An octopus. If we can reach all the remote we are up
1419 struct commit_list *j;
1421 for (j = remoteheads; j; j = j->next) {
1422 struct commit_list *common_one;
1425 * Here we *have* to calculate the individual
1426 * merge_bases again, otherwise "git merge HEAD^
1427 * HEAD^^" would be missed.
1429 common_one = get_merge_bases(head_commit, j->item);
1430 if (oidcmp(&common_one->item->object.oid, &j->item->object.oid)) {
1436 finish_up_to_date(_("Already up-to-date. Yeeah!"));
1441 if (fast_forward == FF_ONLY)
1442 die(_("Not possible to fast-forward, aborting."));
1444 /* We are going to make a new commit. */
1445 git_committer_info(IDENT_STRICT);
1448 * At this point, we need a real merge. No matter what strategy
1449 * we use, it would operate on the index, possibly affecting the
1450 * working tree, and when resolved cleanly, have the desired
1451 * tree in the index -- this means that the index must be in
1452 * sync with the head commit. The strategies are responsible
1455 if (use_strategies_nr == 1 ||
1457 * Stash away the local changes so that we can try more than one.
1462 for (i = 0; i < use_strategies_nr; i++) {
1465 printf(_("Rewinding the tree to pristine...\n"));
1466 restore_state(&head_commit->object.oid, &stash);
1468 if (use_strategies_nr != 1)
1469 printf(_("Trying merge strategy %s...\n"),
1470 use_strategies[i]->name);
1472 * Remember which strategy left the state in the working
1475 wt_strategy = use_strategies[i]->name;
1477 ret = try_merge_strategy(use_strategies[i]->name,
1478 common, remoteheads,
1480 if (!option_commit && !ret) {
1483 * This is necessary here just to avoid writing
1484 * the tree, but later we will *not* exit with
1485 * status code 1 because merge_was_ok is set.
1492 * The backend exits with 1 when conflicts are
1493 * left to be resolved, with 2 when it does not
1494 * handle the given merge at all.
1497 int cnt = evaluate_result();
1499 if (best_cnt <= 0 || cnt <= best_cnt) {
1500 best_strategy = use_strategies[i]->name;
1510 /* Automerge succeeded. */
1511 write_tree_trivial(&result_tree);
1512 automerge_was_ok = 1;
1517 * If we have a resulting tree, that means the strategy module
1518 * auto resolved the merge cleanly.
1520 if (automerge_was_ok) {
1521 ret = finish_automerge(head_commit, head_subsumed,
1522 common, remoteheads,
1523 &result_tree, wt_strategy);
1528 * Pick the result from the best strategy and have the user fix
1531 if (!best_strategy) {
1532 restore_state(&head_commit->object.oid, &stash);
1533 if (use_strategies_nr > 1)
1535 _("No merge strategy handled the merge.\n"));
1537 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1538 use_strategies[0]->name);
1541 } else if (best_strategy == wt_strategy)
1542 ; /* We already have its result in the working tree. */
1544 printf(_("Rewinding the tree to pristine...\n"));
1545 restore_state(&head_commit->object.oid, &stash);
1546 printf(_("Using the %s to prepare resolving by hand.\n"),
1548 try_merge_strategy(best_strategy, common, remoteheads,
1553 finish(head_commit, remoteheads, NULL, NULL);
1555 write_merge_state(remoteheads);
1558 fprintf(stderr, _("Automatic merge went well; "
1559 "stopped before committing as requested\n"));
1561 ret = suggest_conflicts();
1564 free(branch_to_free);