4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
10 #include "parse-options.h"
13 #include "run-command.h"
19 #include "unpack-trees.h"
20 #include "cache-tree.h"
27 #include "merge-recursive.h"
28 #include "resolve-undo.h"
30 #include "fmt-merge-msg.h"
31 #include "gpg-interface.h"
32 #include "sequencer.h"
34 #define DEFAULT_TWOHEAD (1<<0)
35 #define DEFAULT_OCTOPUS (1<<1)
36 #define NO_FAST_FORWARD (1<<2)
37 #define NO_TRIVIAL (1<<3)
44 static const char * const builtin_merge_usage[] = {
45 N_("git merge [<options>] [<commit>...]"),
46 N_("git merge [<options>] <msg> HEAD <commit>"),
47 N_("git merge --abort"),
51 static int show_diffstat = 1, shortlog_len = -1, squash;
52 static int option_commit = 1;
53 static int option_edit = -1;
54 static int allow_trivial = 1, have_message, verify_signatures;
55 static int overwrite_ignore = 1;
56 static struct strbuf merge_msg = STRBUF_INIT;
57 static struct strategy **use_strategies;
58 static size_t use_strategies_nr, use_strategies_alloc;
59 static const char **xopts;
60 static size_t xopts_nr, xopts_alloc;
61 static const char *branch;
62 static char *branch_mergeoptions;
63 static int option_renormalize;
65 static int allow_rerere_auto;
66 static int abort_current_merge;
67 static int show_progress = -1;
68 static int default_to_upstream = 1;
69 static const char *sign_commit;
70 static int reverse_parents;
72 static struct strategy all_strategy[] = {
73 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
74 { "octopus", DEFAULT_OCTOPUS },
76 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
77 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
80 static const char *pull_twohead, *pull_octopus;
88 static enum ff_type fast_forward = FF_ALLOW;
90 static int option_parse_message(const struct option *opt,
91 const char *arg, int unset)
93 struct strbuf *buf = opt->value;
96 strbuf_setlen(buf, 0);
98 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
101 return error(_("switch `m' requires a value"));
105 static struct strategy *get_strategy(const char *name)
108 struct strategy *ret;
109 static struct cmdnames main_cmds, other_cmds;
115 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
116 if (!strcmp(name, all_strategy[i].name))
117 return &all_strategy[i];
120 struct cmdnames not_strategies;
123 memset(¬_strategies, 0, sizeof(struct cmdnames));
124 load_command_list("git-merge-", &main_cmds, &other_cmds);
125 for (i = 0; i < main_cmds.cnt; i++) {
127 struct cmdname *ent = main_cmds.names[i];
128 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
129 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
130 && !all_strategy[j].name[ent->len])
133 add_cmdname(¬_strategies, ent->name, ent->len);
135 exclude_cmds(&main_cmds, ¬_strategies);
137 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
138 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
139 fprintf(stderr, _("Available strategies are:"));
140 for (i = 0; i < main_cmds.cnt; i++)
141 fprintf(stderr, " %s", main_cmds.names[i]->name);
142 fprintf(stderr, ".\n");
143 if (other_cmds.cnt) {
144 fprintf(stderr, _("Available custom strategies are:"));
145 for (i = 0; i < other_cmds.cnt; i++)
146 fprintf(stderr, " %s", other_cmds.names[i]->name);
147 fprintf(stderr, ".\n");
152 ret = xcalloc(1, sizeof(struct strategy));
153 ret->name = xstrdup(name);
154 ret->attr = NO_TRIVIAL;
158 static void append_strategy(struct strategy *s)
160 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
161 use_strategies[use_strategies_nr++] = s;
164 static int option_parse_strategy(const struct option *opt,
165 const char *name, int unset)
170 append_strategy(get_strategy(name));
174 static int option_parse_x(const struct option *opt,
175 const char *arg, int unset)
180 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
181 xopts[xopts_nr++] = xstrdup(arg);
185 static int option_parse_n(const struct option *opt,
186 const char *arg, int unset)
188 show_diffstat = unset;
192 static struct option builtin_merge_options[] = {
193 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
194 N_("do not show a diffstat at the end of the merge"),
195 PARSE_OPT_NOARG, option_parse_n },
196 OPT_BOOL(0, "stat", &show_diffstat,
197 N_("show a diffstat at the end of the merge")),
198 OPT_BOOL(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
199 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
200 N_("add (at most <n>) entries from shortlog to merge commit message"),
201 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
202 OPT_BOOL(0, "squash", &squash,
203 N_("create a single commit instead of doing a merge")),
204 OPT_BOOL(0, "commit", &option_commit,
205 N_("perform a commit if the merge succeeds (default)")),
206 OPT_BOOL('e', "edit", &option_edit,
207 N_("edit message before committing")),
208 OPT_SET_INT(0, "ff", &fast_forward, N_("allow fast-forward (default)"), FF_ALLOW),
209 { OPTION_SET_INT, 0, "ff-only", &fast_forward, NULL,
210 N_("abort if fast-forward is not possible"),
211 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, FF_ONLY },
212 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
213 OPT_BOOL(0, "verify-signatures", &verify_signatures,
214 N_("Verify that the named commit has a valid GPG signature")),
215 OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
216 N_("merge strategy to use"), option_parse_strategy),
217 OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),
218 N_("option for selected merge strategy"), option_parse_x),
219 OPT_CALLBACK('m', "message", &merge_msg, N_("message"),
220 N_("merge commit message (for a non-fast-forward merge)"),
221 option_parse_message),
222 OPT__VERBOSITY(&verbosity),
223 OPT_BOOL(0, "abort", &abort_current_merge,
224 N_("abort the current in-progress merge")),
225 OPT_SET_INT(0, "progress", &show_progress, N_("force progress reporting"), 1),
226 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key-id"),
227 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
228 OPT_BOOL(0, "overwrite-ignore", &overwrite_ignore, N_("update ignored files (default)")),
229 OPT_BOOL(0, "reverse-parents", &reverse_parents,
230 N_("reverse the order of parents")),
234 /* Cleans up metadata that is uninteresting after a succeeded merge. */
235 static void drop_save(void)
237 unlink(git_path_merge_head());
238 unlink(git_path_merge_msg());
239 unlink(git_path_merge_mode());
242 static int save_state(unsigned char *stash)
245 struct child_process cp = CHILD_PROCESS_INIT;
246 struct strbuf buffer = STRBUF_INIT;
247 const char *argv[] = {"stash", "create", NULL};
253 if (start_command(&cp))
254 die(_("could not run stash."));
255 len = strbuf_read(&buffer, cp.out, 1024);
258 if (finish_command(&cp) || len < 0)
259 die(_("stash failed"));
260 else if (!len) /* no changes */
262 strbuf_setlen(&buffer, buffer.len-1);
263 if (get_sha1(buffer.buf, stash))
264 die(_("not a valid object: %s"), buffer.buf);
268 static void read_empty(unsigned const char *sha1, int verbose)
273 args[i++] = "read-tree";
278 args[i++] = EMPTY_TREE_SHA1_HEX;
279 args[i++] = sha1_to_hex(sha1);
282 if (run_command_v_opt(args, RUN_GIT_CMD))
283 die(_("read-tree failed"));
286 static void reset_hard(unsigned const char *sha1, int verbose)
291 args[i++] = "read-tree";
294 args[i++] = "--reset";
296 args[i++] = sha1_to_hex(sha1);
299 if (run_command_v_opt(args, RUN_GIT_CMD))
300 die(_("read-tree failed"));
303 static void restore_state(const unsigned char *head,
304 const unsigned char *stash)
306 struct strbuf sb = STRBUF_INIT;
307 const char *args[] = { "stash", "apply", NULL, NULL };
309 if (is_null_sha1(stash))
314 args[2] = sha1_to_hex(stash);
317 * It is OK to ignore error here, for example when there was
318 * nothing to restore.
320 run_command_v_opt(args, RUN_GIT_CMD);
323 refresh_cache(REFRESH_QUIET);
326 /* This is called when no merge was necessary. */
327 static void finish_up_to_date(const char *msg)
330 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
334 static void squash_message(struct commit *commit, struct commit_list *remoteheads)
337 struct strbuf out = STRBUF_INIT;
338 struct commit_list *j;
339 const char *filename;
341 struct pretty_print_context ctx = {0};
343 printf(_("Squash commit -- not updating HEAD\n"));
344 filename = git_path_squash_msg();
345 fd = open(filename, O_WRONLY | O_CREAT, 0666);
347 die_errno(_("Could not write to '%s'"), filename);
349 init_revisions(&rev, NULL);
350 rev.ignore_merges = 1;
351 rev.commit_format = CMIT_FMT_MEDIUM;
353 commit->object.flags |= UNINTERESTING;
354 add_pending_object(&rev, &commit->object, NULL);
356 for (j = remoteheads; j; j = j->next)
357 add_pending_object(&rev, &j->item->object, NULL);
359 setup_revisions(0, NULL, &rev, NULL);
360 if (prepare_revision_walk(&rev))
361 die(_("revision walk setup failed"));
363 ctx.abbrev = rev.abbrev;
364 ctx.date_mode = rev.date_mode;
365 ctx.fmt = rev.commit_format;
367 strbuf_addstr(&out, "Squashed commit of the following:\n");
368 while ((commit = get_revision(&rev)) != NULL) {
369 strbuf_addch(&out, '\n');
370 strbuf_addf(&out, "commit %s\n",
371 oid_to_hex(&commit->object.oid));
372 pretty_print_commit(&ctx, commit, &out);
374 if (write_in_full(fd, out.buf, out.len) != out.len)
375 die_errno(_("Writing SQUASH_MSG"));
377 die_errno(_("Finishing SQUASH_MSG"));
378 strbuf_release(&out);
381 static void finish(struct commit *head_commit,
382 struct commit_list *remoteheads,
383 const unsigned char *new_head, const char *msg)
385 struct strbuf reflog_message = STRBUF_INIT;
386 const unsigned char *head = head_commit->object.oid.hash;
389 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
393 strbuf_addf(&reflog_message, "%s: %s",
394 getenv("GIT_REFLOG_ACTION"), msg);
397 squash_message(head_commit, remoteheads);
399 if (verbosity >= 0 && !merge_msg.len)
400 printf(_("No merge message -- not updating HEAD\n"));
402 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
403 update_ref(reflog_message.buf, "HEAD",
405 UPDATE_REFS_DIE_ON_ERR);
407 * We ignore errors in 'gc --auto', since the
408 * 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_sha1(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 unsigned char branch_head[20];
438 struct strbuf buf = STRBUF_INIT;
439 struct strbuf bname = STRBUF_INIT;
444 strbuf_branchname(&bname, remote);
447 memset(branch_head, 0, sizeof(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, &found_ref) > 0) {
453 if (starts_with(found_ref, "refs/heads/")) {
454 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
455 sha1_to_hex(branch_head), remote);
458 if (starts_with(found_ref, "refs/tags/")) {
459 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
460 sha1_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 sha1_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 sha1_to_hex(remote_head->object.oid.hash),
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 sha1_to_hex(desc->obj->oid.hash),
518 typename(desc->obj->type),
524 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
525 sha1_to_hex(remote_head->object.oid.hash), 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 memmove(argv + 1, argv, sizeof(*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_config_maybe_bool(k, 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(unsigned char *common, unsigned char *head,
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(unsigned char *sha1)
634 if (write_cache_as_tree(sha1, 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,
640 struct commit *head, const char *head_arg)
642 static struct lock_file lock;
644 hold_locked_index(&lock, 1);
645 refresh_cache(REFRESH_QUIET);
646 if (active_cache_changed &&
647 write_locked_index(&the_index, &lock, COMMIT_LOCK))
648 return error(_("Unable to write index."));
649 rollback_lock_file(&lock);
651 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
653 struct commit *result;
654 struct commit_list *reversed = NULL;
655 struct merge_options o;
656 struct commit_list *j;
658 if (remoteheads->next) {
659 error(_("Not handling anything other than two heads merge."));
663 init_merge_options(&o);
664 if (!strcmp(strategy, "subtree"))
665 o.subtree_shift = "";
667 o.renormalize = option_renormalize;
668 o.show_rename_progress =
669 show_progress == -1 ? isatty(2) : show_progress;
671 for (x = 0; x < xopts_nr; x++)
672 if (parse_merge_opt(&o, xopts[x]))
673 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
675 o.branch1 = head_arg;
676 o.branch2 = merge_remote_util(remoteheads->item)->name;
678 for (j = common; j; j = j->next)
679 commit_list_insert(j->item, &reversed);
681 hold_locked_index(&lock, 1);
682 clean = merge_recursive(&o, head,
683 remoteheads->item, reversed, &result);
684 if (active_cache_changed &&
685 write_locked_index(&the_index, &lock, COMMIT_LOCK))
686 die (_("unable to write %s"), get_index_file());
687 rollback_lock_file(&lock);
688 return clean ? 0 : 1;
690 return try_merge_command(strategy, xopts_nr, xopts,
691 common, head_arg, remoteheads);
695 static void count_diff_files(struct diff_queue_struct *q,
696 struct diff_options *opt, void *data)
703 static int count_unmerged_entries(void)
707 for (i = 0; i < active_nr; i++)
708 if (ce_stage(active_cache[i]))
714 static void split_merge_strategies(const char *string, struct strategy **list,
722 buf = xstrdup(string);
727 ALLOC_GROW(*list, *nr + 1, *alloc);
728 (*list)[(*nr)++].name = xstrdup(q);
733 ALLOC_GROW(*list, *nr + 1, *alloc);
734 (*list)[(*nr)++].name = xstrdup(q);
740 static void add_strategies(const char *string, unsigned attr)
742 struct strategy *list = NULL;
743 int list_alloc = 0, list_nr = 0, i;
745 memset(&list, 0, sizeof(list));
746 split_merge_strategies(string, &list, &list_nr, &list_alloc);
748 for (i = 0; i < list_nr; i++)
749 append_strategy(get_strategy(list[i].name));
752 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
753 if (all_strategy[i].attr & attr)
754 append_strategy(&all_strategy[i]);
758 static void write_merge_msg(struct strbuf *msg)
760 const char *filename = git_path_merge_msg();
761 int fd = open(filename, O_WRONLY | O_CREAT, 0666);
763 die_errno(_("Could not open '%s' for writing"),
765 if (write_in_full(fd, msg->buf, msg->len) != msg->len)
766 die_errno(_("Could not write to '%s'"), filename);
770 static void read_merge_msg(struct strbuf *msg)
772 const char *filename = git_path_merge_msg();
774 if (strbuf_read_file(msg, filename, 0) < 0)
775 die_errno(_("Could not read from '%s'"), filename);
778 static void write_merge_state(struct commit_list *);
779 static void abort_commit(struct commit_list *remoteheads, const char *err_msg)
782 error("%s", err_msg);
784 _("Not committing merge; use 'git commit' to complete the merge.\n"));
785 write_merge_state(remoteheads);
789 static const char merge_editor_comment[] =
790 N_("Please enter a commit message to explain why this merge is necessary,\n"
791 "especially if it merges an updated upstream into a topic branch.\n"
793 "Lines starting with '%c' will be ignored, and an empty message aborts\n"
796 static void prepare_to_commit(struct commit_list *remoteheads)
798 struct strbuf msg = STRBUF_INIT;
799 strbuf_addbuf(&msg, &merge_msg);
800 strbuf_addch(&msg, '\n');
802 strbuf_commented_addf(&msg, _(merge_editor_comment), comment_line_char);
803 write_merge_msg(&msg);
804 if (run_commit_hook(0 < option_edit, get_index_file(), "prepare-commit-msg",
805 git_path_merge_msg(), "merge", NULL))
806 abort_commit(remoteheads, NULL);
807 if (0 < option_edit) {
808 if (launch_editor(git_path_merge_msg(), NULL, NULL))
809 abort_commit(remoteheads, NULL);
811 read_merge_msg(&msg);
812 strbuf_stripspace(&msg, 0 < option_edit);
814 abort_commit(remoteheads, _("Empty commit message."));
815 strbuf_release(&merge_msg);
816 strbuf_addbuf(&merge_msg, &msg);
817 strbuf_release(&msg);
820 static int merge_trivial(struct commit *head, struct commit_list *remoteheads)
822 unsigned char result_tree[20], result_commit[20];
823 struct commit_list *parents, **pptr = &parents;
825 write_tree_trivial(result_tree);
826 printf(_("Wonderful.\n"));
827 pptr = commit_list_append(head, pptr);
828 pptr = commit_list_append(remoteheads->item, pptr);
829 prepare_to_commit(remoteheads);
831 parents = reverse_heads(parents);
832 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree, parents,
833 result_commit, NULL, sign_commit))
834 die(_("failed to write commit object"));
835 finish(head, remoteheads, result_commit, "In-index merge");
840 static int finish_automerge(struct commit *head,
842 struct commit_list *common,
843 struct commit_list *remoteheads,
844 unsigned char *result_tree,
845 const char *wt_strategy)
847 struct commit_list *parents = NULL;
848 struct strbuf buf = STRBUF_INIT;
849 unsigned char result_commit[20];
851 free_commit_list(common);
852 parents = remoteheads;
853 if (!head_subsumed || fast_forward == FF_NO)
854 commit_list_insert(head, &parents);
856 parents = reverse_heads(parents);
857 strbuf_addch(&merge_msg, '\n');
858 prepare_to_commit(remoteheads);
859 if (commit_tree(merge_msg.buf, merge_msg.len, result_tree, parents,
860 result_commit, NULL, sign_commit))
861 die(_("failed to write commit object"));
862 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
863 finish(head, remoteheads, result_commit, buf.buf);
864 strbuf_release(&buf);
869 static int suggest_conflicts(void)
871 const char *filename;
873 struct strbuf msgbuf = STRBUF_INIT;
875 filename = git_path_merge_msg();
876 fp = fopen(filename, "a");
878 die_errno(_("Could not open '%s' for writing"), filename);
880 append_conflicts_hint(&msgbuf);
881 fputs(msgbuf.buf, fp);
882 strbuf_release(&msgbuf);
884 rerere(allow_rerere_auto);
885 printf(_("Automatic merge failed; "
886 "fix conflicts and then commit the result.\n"));
890 static struct commit *is_old_style_invocation(int argc, const char **argv,
891 const unsigned char *head)
893 struct commit *second_token = NULL;
895 unsigned char second_sha1[20];
897 if (get_sha1(argv[1], second_sha1))
899 second_token = lookup_commit_reference_gently(second_sha1, 0);
901 die(_("'%s' is not a commit"), argv[1]);
902 if (hashcmp(second_token->object.oid.hash, head))
908 static int evaluate_result(void)
913 /* Check how many files differ. */
914 init_revisions(&rev, "");
915 setup_revisions(0, NULL, &rev, NULL);
916 rev.diffopt.output_format |=
917 DIFF_FORMAT_CALLBACK;
918 rev.diffopt.format_callback = count_diff_files;
919 rev.diffopt.format_callback_data = &cnt;
920 run_diff_files(&rev, 0);
923 * Check how many unmerged entries are
926 cnt += count_unmerged_entries();
932 * Pretend as if the user told us to merge with the remote-tracking
933 * branch we have for the upstream of the current branch
935 static int setup_with_upstream(const char ***argv)
937 struct branch *branch = branch_get(NULL);
942 die(_("No current branch."));
943 if (!branch->remote_name)
944 die(_("No remote for the current branch."));
945 if (!branch->merge_nr)
946 die(_("No default upstream defined for the current branch."));
948 args = xcalloc(branch->merge_nr + 1, sizeof(char *));
949 for (i = 0; i < branch->merge_nr; i++) {
950 if (!branch->merge[i]->dst)
951 die(_("No remote-tracking branch for %s from %s"),
952 branch->merge[i]->src, branch->remote_name);
953 args[i] = branch->merge[i]->dst;
960 static void write_merge_state(struct commit_list *remoteheads)
962 const char *filename;
964 struct commit_list *j;
965 struct strbuf buf = STRBUF_INIT;
967 for (j = remoteheads; j; j = j->next) {
968 struct object_id *oid;
969 struct commit *c = j->item;
970 if (c->util && merge_remote_util(c)->obj) {
971 oid = &merge_remote_util(c)->obj->oid;
973 oid = &c->object.oid;
975 strbuf_addf(&buf, "%s\n", oid_to_hex(oid));
977 filename = git_path_merge_head();
978 fd = open(filename, O_WRONLY | O_CREAT, 0666);
980 die_errno(_("Could not open '%s' for writing"), filename);
981 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
982 die_errno(_("Could not write to '%s'"), filename);
984 strbuf_addch(&merge_msg, '\n');
985 write_merge_msg(&merge_msg);
987 filename = git_path_merge_mode();
988 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
990 die_errno(_("Could not open '%s' for writing"), filename);
992 if (fast_forward == FF_NO)
993 strbuf_addf(&buf, "no-ff ");
995 strbuf_addf(&buf, "reverse ");
996 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
997 die_errno(_("Could not write to '%s'"), filename);
1001 static int default_edit_option(void)
1003 static const char name[] = "GIT_MERGE_AUTOEDIT";
1004 const char *e = getenv(name);
1005 struct stat st_stdin, st_stdout;
1008 /* an explicit -m msg without --[no-]edit */
1012 int v = git_config_maybe_bool(name, e);
1014 die("Bad value '%s' in environment '%s'", e, name);
1018 /* Use editor if stdin and stdout are the same and is a tty */
1019 return (!fstat(0, &st_stdin) &&
1020 !fstat(1, &st_stdout) &&
1021 isatty(0) && isatty(1) &&
1022 st_stdin.st_dev == st_stdout.st_dev &&
1023 st_stdin.st_ino == st_stdout.st_ino &&
1024 st_stdin.st_mode == st_stdout.st_mode);
1027 static struct commit_list *reduce_parents(struct commit *head_commit,
1029 struct commit_list *remoteheads)
1031 struct commit_list *parents, **remotes;
1034 * Is the current HEAD reachable from another commit being
1035 * merged? If so we do not want to record it as a parent of
1036 * the resulting merge, unless --no-ff is given. We will flip
1037 * this variable to 0 when we find HEAD among the independent
1038 * tips being merged.
1042 /* Find what parents to record by checking independent ones. */
1043 parents = reduce_heads(remoteheads);
1046 remotes = &remoteheads;
1048 struct commit *commit = pop_commit(&parents);
1049 if (commit == head_commit)
1052 remotes = &commit_list_insert(commit, remotes)->next;
1057 static void prepare_merge_message(struct strbuf *merge_names, struct strbuf *merge_msg)
1059 struct fmt_merge_msg_opts opts;
1061 memset(&opts, 0, sizeof(opts));
1062 opts.add_title = !have_message;
1063 opts.shortlog_len = shortlog_len;
1064 opts.credit_people = (0 < option_edit);
1066 fmt_merge_msg(merge_names, merge_msg, &opts);
1068 strbuf_setlen(merge_msg, merge_msg->len - 1);
1071 static void handle_fetch_head(struct commit_list **remotes, struct strbuf *merge_names)
1073 const char *filename;
1075 struct strbuf fetch_head_file = STRBUF_INIT;
1078 merge_names = &fetch_head_file;
1080 filename = git_path_fetch_head();
1081 fd = open(filename, O_RDONLY);
1083 die_errno(_("could not open '%s' for reading"), filename);
1085 if (strbuf_read(merge_names, fd, 0) < 0)
1086 die_errno(_("could not read '%s'"), filename);
1088 die_errno(_("could not close '%s'"), filename);
1090 for (pos = 0; pos < merge_names->len; pos = npos) {
1091 unsigned char sha1[20];
1093 struct commit *commit;
1095 ptr = strchr(merge_names->buf + pos, '\n');
1097 npos = ptr - merge_names->buf + 1;
1099 npos = merge_names->len;
1101 if (npos - pos < 40 + 2 ||
1102 get_sha1_hex(merge_names->buf + pos, sha1))
1103 commit = NULL; /* bad */
1104 else if (memcmp(merge_names->buf + pos + 40, "\t\t", 2))
1105 continue; /* not-for-merge */
1107 char saved = merge_names->buf[pos + 40];
1108 merge_names->buf[pos + 40] = '\0';
1109 commit = get_merge_parent(merge_names->buf + pos);
1110 merge_names->buf[pos + 40] = saved;
1115 die("not something we can merge in %s: %s",
1116 filename, merge_names->buf + pos);
1118 remotes = &commit_list_insert(commit, remotes)->next;
1121 if (merge_names == &fetch_head_file)
1122 strbuf_release(&fetch_head_file);
1125 static struct commit_list *collect_parents(struct commit *head_commit,
1127 int argc, const char **argv,
1128 struct strbuf *merge_msg)
1131 struct commit_list *remoteheads = NULL;
1132 struct commit_list **remotes = &remoteheads;
1133 struct strbuf merge_names = STRBUF_INIT, *autogen = NULL;
1135 if (merge_msg && (!have_message || shortlog_len))
1136 autogen = &merge_names;
1139 remotes = &commit_list_insert(head_commit, remotes)->next;
1141 if (argc == 1 && !strcmp(argv[0], "FETCH_HEAD")) {
1142 handle_fetch_head(remotes, autogen);
1143 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1145 for (i = 0; i < argc; i++) {
1146 struct commit *commit = get_merge_parent(argv[i]);
1148 help_unknown_ref(argv[i], "merge",
1149 "not something we can merge");
1150 remotes = &commit_list_insert(commit, remotes)->next;
1152 remoteheads = reduce_parents(head_commit, head_subsumed, remoteheads);
1154 struct commit_list *p;
1155 for (p = remoteheads; p; p = p->next)
1156 merge_name(merge_remote_util(p->item)->name, autogen);
1161 prepare_merge_message(autogen, merge_msg);
1162 strbuf_release(autogen);
1168 int cmd_merge(int argc, const char **argv, const char *prefix)
1170 unsigned char result_tree[20];
1171 unsigned char stash[20];
1172 unsigned char head_sha1[20];
1173 struct commit *head_commit;
1174 struct strbuf buf = STRBUF_INIT;
1175 const char *head_arg;
1176 int flag, i, ret = 0, head_subsumed;
1177 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1178 struct commit_list *common = NULL;
1179 const char *best_strategy = NULL, *wt_strategy = NULL;
1180 struct commit_list *remoteheads, *p;
1181 void *branch_to_free;
1183 if (argc == 2 && !strcmp(argv[1], "-h"))
1184 usage_with_options(builtin_merge_usage, builtin_merge_options);
1187 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1190 branch = branch_to_free = resolve_refdup("HEAD", 0, head_sha1, &flag);
1191 if (branch && starts_with(branch, "refs/heads/"))
1193 if (!branch || is_null_sha1(head_sha1))
1196 head_commit = lookup_commit_or_die(head_sha1, "HEAD");
1198 git_config(git_merge_config, NULL);
1200 if (branch_mergeoptions)
1201 parse_branch_merge_options(branch_mergeoptions);
1202 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1203 builtin_merge_usage, 0);
1204 if (shortlog_len < 0)
1205 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
1207 if (verbosity < 0 && show_progress == -1)
1210 if (abort_current_merge) {
1212 const char *nargv[] = {"reset", "--merge", NULL};
1214 if (!file_exists(git_path_merge_head()))
1215 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1217 /* Invoke 'git reset --merge' */
1218 ret = cmd_reset(nargc, nargv, prefix);
1222 if (read_cache_unmerged())
1223 die_resolve_conflict("merge");
1225 if (file_exists(git_path_merge_head())) {
1227 * There is no unmerged entry, don't advise 'git
1228 * add/rm <file>', just 'git commit'.
1230 if (advice_resolve_conflict)
1231 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1232 "Please, commit your changes before you merge."));
1234 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1236 if (file_exists(git_path_cherry_pick_head())) {
1237 if (advice_resolve_conflict)
1238 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1239 "Please, commit your changes before you merge."));
1241 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1243 resolve_undo_clear();
1249 if (fast_forward == FF_NO)
1250 die(_("You cannot combine --squash with --no-ff."));
1255 if (default_to_upstream)
1256 argc = setup_with_upstream(&argv);
1258 die(_("No commit specified and merge.defaultToUpstream not set."));
1259 } else if (argc == 1 && !strcmp(argv[0], "-")) {
1264 usage_with_options(builtin_merge_usage,
1265 builtin_merge_options);
1268 struct commit *remote_head;
1270 * If the merged head is a valid one there is no reason
1271 * to forbid "git merge" into a branch yet to be born.
1272 * We do the same for "git pull".
1275 die(_("Squash commit into empty head not supported yet"));
1276 if (fast_forward == FF_NO)
1277 die(_("Non-fast-forward commit does not make sense into "
1279 remoteheads = collect_parents(head_commit, &head_subsumed,
1281 remote_head = remoteheads->item;
1283 die(_("%s - not something we can merge"), argv[0]);
1284 if (remoteheads->next)
1285 die(_("Can merge only exactly one commit into empty head"));
1286 read_empty(remote_head->object.oid.hash, 0);
1287 update_ref("initial pull", "HEAD", remote_head->object.oid.hash,
1288 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1293 * This could be traditional "merge <msg> HEAD <commit>..." and
1294 * the way we can tell it is to see if the second token is HEAD,
1295 * but some people might have misused the interface and used a
1296 * commit-ish that is the same as HEAD there instead.
1297 * Traditional format never would have "-m" so it is an
1298 * additional safety measure to check for it.
1300 if (!have_message &&
1301 is_old_style_invocation(argc, argv, head_commit->object.oid.hash)) {
1302 warning("old-style 'git merge <msg> HEAD <commit>' is deprecated.");
1303 strbuf_addstr(&merge_msg, argv[0]);
1307 remoteheads = collect_parents(head_commit, &head_subsumed,
1310 /* We are invoked directly as the first-class UI. */
1314 * All the rest are the commits being merged; prepare
1315 * the standard merge summary message to be appended
1316 * to the given message.
1318 remoteheads = collect_parents(head_commit, &head_subsumed,
1319 argc, argv, &merge_msg);
1322 if (!head_commit || !argc)
1323 usage_with_options(builtin_merge_usage,
1324 builtin_merge_options);
1326 if (verify_signatures) {
1327 for (p = remoteheads; p; p = p->next) {
1328 struct commit *commit = p->item;
1329 char hex[GIT_SHA1_HEXSZ + 1];
1330 struct signature_check signature_check;
1331 memset(&signature_check, 0, sizeof(signature_check));
1333 check_commit_signature(commit, &signature_check);
1335 find_unique_abbrev_r(hex, commit->object.oid.hash, DEFAULT_ABBREV);
1336 switch (signature_check.result) {
1340 die(_("Commit %s has an untrusted GPG signature, "
1341 "allegedly by %s."), hex, signature_check.signer);
1343 die(_("Commit %s has a bad GPG signature "
1344 "allegedly by %s."), hex, signature_check.signer);
1346 die(_("Commit %s does not have a GPG signature."), hex);
1348 if (verbosity >= 0 && signature_check.result == 'G')
1349 printf(_("Commit %s has a good GPG signature by %s\n"),
1350 hex, signature_check.signer);
1352 signature_check_clear(&signature_check);
1356 strbuf_addstr(&buf, "merge");
1357 for (p = remoteheads; p; p = p->next)
1358 strbuf_addf(&buf, " %s", merge_remote_util(p->item)->name);
1359 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1362 for (p = remoteheads; p; p = p->next) {
1363 struct commit *commit = p->item;
1364 strbuf_addf(&buf, "GITHEAD_%s",
1365 sha1_to_hex(commit->object.oid.hash));
1366 setenv(buf.buf, merge_remote_util(commit)->name, 1);
1368 if (fast_forward != FF_ONLY &&
1369 merge_remote_util(commit) &&
1370 merge_remote_util(commit)->obj &&
1371 merge_remote_util(commit)->obj->type == OBJ_TAG)
1372 fast_forward = FF_NO;
1375 if (option_edit < 0)
1376 option_edit = default_edit_option();
1378 if (!use_strategies) {
1380 ; /* already up-to-date */
1381 else if (!remoteheads->next)
1382 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1384 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1387 for (i = 0; i < use_strategies_nr; i++) {
1388 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1389 fast_forward = FF_NO;
1390 if (use_strategies[i]->attr & NO_TRIVIAL)
1395 ; /* already up-to-date */
1396 else if (!remoteheads->next)
1397 common = get_merge_bases(head_commit, remoteheads->item);
1399 struct commit_list *list = remoteheads;
1400 commit_list_insert(head_commit, &list);
1401 common = get_octopus_merge_bases(list);
1405 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head_commit->object.oid.hash,
1406 NULL, 0, UPDATE_REFS_DIE_ON_ERR);
1408 if (remoteheads && !common)
1409 ; /* No common ancestors found. We need a real merge. */
1410 else if (!remoteheads ||
1411 (!remoteheads->next && !common->next &&
1412 common->item == remoteheads->item)) {
1414 * If head can reach all the merge then we are up to date.
1415 * but first the most common case of merging one remote.
1417 finish_up_to_date("Already up-to-date.");
1419 } else if (fast_forward != FF_NO && !remoteheads->next &&
1421 !hashcmp(common->item->object.oid.hash, head_commit->object.oid.hash)) {
1422 /* Again the most common case of merging one remote. */
1423 struct strbuf msg = STRBUF_INIT;
1424 struct commit *commit;
1426 if (verbosity >= 0) {
1427 char from[GIT_SHA1_HEXSZ + 1], to[GIT_SHA1_HEXSZ + 1];
1428 find_unique_abbrev_r(from, head_commit->object.oid.hash,
1430 find_unique_abbrev_r(to, remoteheads->item->object.oid.hash,
1432 printf(_("Updating %s..%s\n"), from, to);
1434 strbuf_addstr(&msg, "Fast-forward");
1437 " (no commit created; -m option ignored)");
1438 commit = remoteheads->item;
1444 if (checkout_fast_forward(head_commit->object.oid.hash,
1445 commit->object.oid.hash,
1446 overwrite_ignore)) {
1451 finish(head_commit, remoteheads, commit->object.oid.hash, msg.buf);
1454 } else if (!remoteheads->next && common->next)
1457 * We are not doing octopus and not fast-forward. Need
1460 else if (!remoteheads->next && !common->next && option_commit) {
1462 * We are not doing octopus, not fast-forward, and have
1465 refresh_cache(REFRESH_QUIET);
1466 if (allow_trivial && fast_forward != FF_ONLY) {
1467 /* See if it is really trivial. */
1468 git_committer_info(IDENT_STRICT);
1469 printf(_("Trying really trivial in-index merge...\n"));
1470 if (!read_tree_trivial(common->item->object.oid.hash,
1471 head_commit->object.oid.hash,
1472 remoteheads->item->object.oid.hash)) {
1473 ret = merge_trivial(head_commit, remoteheads);
1476 printf(_("Nope.\n"));
1480 * An octopus. If we can reach all the remote we are up
1484 struct commit_list *j;
1486 for (j = remoteheads; j; j = j->next) {
1487 struct commit_list *common_one;
1490 * Here we *have* to calculate the individual
1491 * merge_bases again, otherwise "git merge HEAD^
1492 * HEAD^^" would be missed.
1494 common_one = get_merge_bases(head_commit, j->item);
1495 if (hashcmp(common_one->item->object.oid.hash,
1496 j->item->object.oid.hash)) {
1502 finish_up_to_date("Already up-to-date. Yeeah!");
1507 if (fast_forward == FF_ONLY)
1508 die(_("Not possible to fast-forward, aborting."));
1510 /* We are going to make a new commit. */
1511 git_committer_info(IDENT_STRICT);
1514 * At this point, we need a real merge. No matter what strategy
1515 * we use, it would operate on the index, possibly affecting the
1516 * working tree, and when resolved cleanly, have the desired
1517 * tree in the index -- this means that the index must be in
1518 * sync with the head commit. The strategies are responsible
1521 if (use_strategies_nr == 1 ||
1523 * Stash away the local changes so that we can try more than one.
1526 hashcpy(stash, null_sha1);
1528 for (i = 0; i < use_strategies_nr; i++) {
1531 printf(_("Rewinding the tree to pristine...\n"));
1532 restore_state(head_commit->object.oid.hash, stash);
1534 if (use_strategies_nr != 1)
1535 printf(_("Trying merge strategy %s...\n"),
1536 use_strategies[i]->name);
1538 * Remember which strategy left the state in the working
1541 wt_strategy = use_strategies[i]->name;
1543 ret = try_merge_strategy(use_strategies[i]->name,
1544 common, remoteheads,
1545 head_commit, head_arg);
1546 if (!option_commit && !ret) {
1549 * This is necessary here just to avoid writing
1550 * the tree, but later we will *not* exit with
1551 * status code 1 because merge_was_ok is set.
1558 * The backend exits with 1 when conflicts are
1559 * left to be resolved, with 2 when it does not
1560 * handle the given merge at all.
1563 int cnt = evaluate_result();
1565 if (best_cnt <= 0 || cnt <= best_cnt) {
1566 best_strategy = use_strategies[i]->name;
1576 /* Automerge succeeded. */
1577 write_tree_trivial(result_tree);
1578 automerge_was_ok = 1;
1583 * If we have a resulting tree, that means the strategy module
1584 * auto resolved the merge cleanly.
1586 if (automerge_was_ok) {
1587 ret = finish_automerge(head_commit, head_subsumed,
1588 common, remoteheads,
1589 result_tree, wt_strategy);
1594 * Pick the result from the best strategy and have the user fix
1597 if (!best_strategy) {
1598 restore_state(head_commit->object.oid.hash, stash);
1599 if (use_strategies_nr > 1)
1601 _("No merge strategy handled the merge.\n"));
1603 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1604 use_strategies[0]->name);
1607 } else if (best_strategy == wt_strategy)
1608 ; /* We already have its result in the working tree. */
1610 printf(_("Rewinding the tree to pristine...\n"));
1611 restore_state(head_commit->object.oid.hash, stash);
1612 printf(_("Using the %s to prepare resolving by hand.\n"),
1614 try_merge_strategy(best_strategy, common, remoteheads,
1615 head_commit, head_arg);
1619 finish(head_commit, remoteheads, NULL, NULL);
1621 write_merge_state(remoteheads);
1624 fprintf(stderr, _("Automatic merge went well; "
1625 "stopped before committing as requested\n"));
1627 ret = suggest_conflicts();
1630 free(branch_to_free);