4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
10 #include "parse-options.h"
12 #include "run-command.h"
18 #include "unpack-trees.h"
19 #include "cache-tree.h"
26 #include "merge-recursive.h"
27 #include "resolve-undo.h"
29 #include "fmt-merge-msg.h"
30 #include "gpg-interface.h"
32 #define DEFAULT_TWOHEAD (1<<0)
33 #define DEFAULT_OCTOPUS (1<<1)
34 #define NO_FAST_FORWARD (1<<2)
35 #define NO_TRIVIAL (1<<3)
42 static const char * const builtin_merge_usage[] = {
43 N_("git merge [options] [<commit>...]"),
44 N_("git merge [options] <msg> HEAD <commit>"),
45 N_("git merge --abort"),
49 static int show_diffstat = 1, shortlog_len = -1, squash;
50 static int option_commit = 1, allow_fast_forward = 1;
51 static int fast_forward_only, option_edit = -1;
52 static int allow_trivial = 1, have_message;
53 static int overwrite_ignore = 1;
54 static struct strbuf merge_msg = STRBUF_INIT;
55 static struct strategy **use_strategies;
56 static size_t use_strategies_nr, use_strategies_alloc;
57 static const char **xopts;
58 static size_t xopts_nr, xopts_alloc;
59 static const char *branch;
60 static char *branch_mergeoptions;
61 static int option_renormalize;
63 static int allow_rerere_auto;
64 static int abort_current_merge;
65 static int show_progress = -1;
66 static int default_to_upstream;
67 static const char *sign_commit;
69 static struct strategy all_strategy[] = {
70 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
71 { "octopus", DEFAULT_OCTOPUS },
73 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
74 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
77 static const char *pull_twohead, *pull_octopus;
79 static int option_parse_message(const struct option *opt,
80 const char *arg, int unset)
82 struct strbuf *buf = opt->value;
85 strbuf_setlen(buf, 0);
87 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
90 return error(_("switch `m' requires a value"));
94 static struct strategy *get_strategy(const char *name)
98 static struct cmdnames main_cmds, other_cmds;
104 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
105 if (!strcmp(name, all_strategy[i].name))
106 return &all_strategy[i];
109 struct cmdnames not_strategies;
112 memset(¬_strategies, 0, sizeof(struct cmdnames));
113 load_command_list("git-merge-", &main_cmds, &other_cmds);
114 for (i = 0; i < main_cmds.cnt; i++) {
116 struct cmdname *ent = main_cmds.names[i];
117 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
118 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
119 && !all_strategy[j].name[ent->len])
122 add_cmdname(¬_strategies, ent->name, ent->len);
124 exclude_cmds(&main_cmds, ¬_strategies);
126 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
127 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
128 fprintf(stderr, _("Available strategies are:"));
129 for (i = 0; i < main_cmds.cnt; i++)
130 fprintf(stderr, " %s", main_cmds.names[i]->name);
131 fprintf(stderr, ".\n");
132 if (other_cmds.cnt) {
133 fprintf(stderr, _("Available custom strategies are:"));
134 for (i = 0; i < other_cmds.cnt; i++)
135 fprintf(stderr, " %s", other_cmds.names[i]->name);
136 fprintf(stderr, ".\n");
141 ret = xcalloc(1, sizeof(struct strategy));
142 ret->name = xstrdup(name);
143 ret->attr = NO_TRIVIAL;
147 static void append_strategy(struct strategy *s)
149 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
150 use_strategies[use_strategies_nr++] = s;
153 static int option_parse_strategy(const struct option *opt,
154 const char *name, int unset)
159 append_strategy(get_strategy(name));
163 static int option_parse_x(const struct option *opt,
164 const char *arg, int unset)
169 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
170 xopts[xopts_nr++] = xstrdup(arg);
174 static int option_parse_n(const struct option *opt,
175 const char *arg, int unset)
177 show_diffstat = unset;
181 static struct option builtin_merge_options[] = {
182 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
183 N_("do not show a diffstat at the end of the merge"),
184 PARSE_OPT_NOARG, option_parse_n },
185 OPT_BOOLEAN(0, "stat", &show_diffstat,
186 N_("show a diffstat at the end of the merge")),
187 OPT_BOOLEAN(0, "summary", &show_diffstat, N_("(synonym to --stat)")),
188 { OPTION_INTEGER, 0, "log", &shortlog_len, N_("n"),
189 N_("add (at most <n>) entries from shortlog to merge commit message"),
190 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
191 OPT_BOOLEAN(0, "squash", &squash,
192 N_("create a single commit instead of doing a merge")),
193 OPT_BOOLEAN(0, "commit", &option_commit,
194 N_("perform a commit if the merge succeeds (default)")),
195 OPT_BOOL('e', "edit", &option_edit,
196 N_("edit message before committing")),
197 OPT_BOOLEAN(0, "ff", &allow_fast_forward,
198 N_("allow fast-forward (default)")),
199 OPT_BOOLEAN(0, "ff-only", &fast_forward_only,
200 N_("abort if fast-forward is not possible")),
201 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
202 OPT_CALLBACK('s', "strategy", &use_strategies, N_("strategy"),
203 N_("merge strategy to use"), option_parse_strategy),
204 OPT_CALLBACK('X', "strategy-option", &xopts, N_("option=value"),
205 N_("option for selected merge strategy"), option_parse_x),
206 OPT_CALLBACK('m', "message", &merge_msg, N_("message"),
207 N_("merge commit message (for a non-fast-forward merge)"),
208 option_parse_message),
209 OPT__VERBOSITY(&verbosity),
210 OPT_BOOLEAN(0, "abort", &abort_current_merge,
211 N_("abort the current in-progress merge")),
212 OPT_SET_INT(0, "progress", &show_progress, N_("force progress reporting"), 1),
213 { OPTION_STRING, 'S', "gpg-sign", &sign_commit, N_("key id"),
214 N_("GPG sign commit"), PARSE_OPT_OPTARG, NULL, (intptr_t) "" },
215 OPT_BOOLEAN(0, "overwrite-ignore", &overwrite_ignore, N_("update ignored files (default)")),
219 /* Cleans up metadata that is uninteresting after a succeeded merge. */
220 static void drop_save(void)
222 unlink(git_path("MERGE_HEAD"));
223 unlink(git_path("MERGE_MSG"));
224 unlink(git_path("MERGE_MODE"));
227 static int save_state(unsigned char *stash)
230 struct child_process cp;
231 struct strbuf buffer = STRBUF_INIT;
232 const char *argv[] = {"stash", "create", NULL};
234 memset(&cp, 0, sizeof(cp));
239 if (start_command(&cp))
240 die(_("could not run stash."));
241 len = strbuf_read(&buffer, cp.out, 1024);
244 if (finish_command(&cp) || len < 0)
245 die(_("stash failed"));
246 else if (!len) /* no changes */
248 strbuf_setlen(&buffer, buffer.len-1);
249 if (get_sha1(buffer.buf, stash))
250 die(_("not a valid object: %s"), buffer.buf);
254 static void read_empty(unsigned const char *sha1, int verbose)
259 args[i++] = "read-tree";
264 args[i++] = EMPTY_TREE_SHA1_HEX;
265 args[i++] = sha1_to_hex(sha1);
268 if (run_command_v_opt(args, RUN_GIT_CMD))
269 die(_("read-tree failed"));
272 static void reset_hard(unsigned const char *sha1, int verbose)
277 args[i++] = "read-tree";
280 args[i++] = "--reset";
282 args[i++] = sha1_to_hex(sha1);
285 if (run_command_v_opt(args, RUN_GIT_CMD))
286 die(_("read-tree failed"));
289 static void restore_state(const unsigned char *head,
290 const unsigned char *stash)
292 struct strbuf sb = STRBUF_INIT;
293 const char *args[] = { "stash", "apply", NULL, NULL };
295 if (is_null_sha1(stash))
300 args[2] = sha1_to_hex(stash);
303 * It is OK to ignore error here, for example when there was
304 * nothing to restore.
306 run_command_v_opt(args, RUN_GIT_CMD);
309 refresh_cache(REFRESH_QUIET);
312 /* This is called when no merge was necessary. */
313 static void finish_up_to_date(const char *msg)
316 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
320 static void squash_message(struct commit *commit, struct commit_list *remoteheads)
323 struct strbuf out = STRBUF_INIT;
324 struct commit_list *j;
325 const char *filename;
327 struct pretty_print_context ctx = {0};
329 printf(_("Squash commit -- not updating HEAD\n"));
330 filename = git_path("SQUASH_MSG");
331 fd = open(filename, O_WRONLY | O_CREAT, 0666);
333 die_errno(_("Could not write to '%s'"), filename);
335 init_revisions(&rev, NULL);
336 rev.ignore_merges = 1;
337 rev.commit_format = CMIT_FMT_MEDIUM;
339 commit->object.flags |= UNINTERESTING;
340 add_pending_object(&rev, &commit->object, NULL);
342 for (j = remoteheads; j; j = j->next)
343 add_pending_object(&rev, &j->item->object, NULL);
345 setup_revisions(0, NULL, &rev, NULL);
346 if (prepare_revision_walk(&rev))
347 die(_("revision walk setup failed"));
349 ctx.abbrev = rev.abbrev;
350 ctx.date_mode = rev.date_mode;
351 ctx.fmt = rev.commit_format;
353 strbuf_addstr(&out, "Squashed commit of the following:\n");
354 while ((commit = get_revision(&rev)) != NULL) {
355 strbuf_addch(&out, '\n');
356 strbuf_addf(&out, "commit %s\n",
357 sha1_to_hex(commit->object.sha1));
358 pretty_print_commit(&ctx, commit, &out);
360 if (write(fd, out.buf, out.len) < 0)
361 die_errno(_("Writing SQUASH_MSG"));
363 die_errno(_("Finishing SQUASH_MSG"));
364 strbuf_release(&out);
367 static void finish(struct commit *head_commit,
368 struct commit_list *remoteheads,
369 const unsigned char *new_head, const char *msg)
371 struct strbuf reflog_message = STRBUF_INIT;
372 const unsigned char *head = head_commit->object.sha1;
375 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
379 strbuf_addf(&reflog_message, "%s: %s",
380 getenv("GIT_REFLOG_ACTION"), msg);
383 squash_message(head_commit, remoteheads);
385 if (verbosity >= 0 && !merge_msg.len)
386 printf(_("No merge message -- not updating HEAD\n"));
388 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
389 update_ref(reflog_message.buf, "HEAD",
393 * We ignore errors in 'gc --auto', since the
394 * user should see them.
396 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
399 if (new_head && show_diffstat) {
400 struct diff_options opts;
402 opts.stat_width = -1; /* use full terminal width */
403 opts.stat_graph_width = -1; /* respect statGraphWidth config */
404 opts.output_format |=
405 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
406 opts.detect_rename = DIFF_DETECT_RENAME;
407 diff_setup_done(&opts);
408 diff_tree_sha1(head, new_head, "", &opts);
413 /* Run a post-merge hook */
414 run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
416 strbuf_release(&reflog_message);
419 /* Get the name for the merge commit's message. */
420 static void merge_name(const char *remote, struct strbuf *msg)
422 struct commit *remote_head;
423 unsigned char branch_head[20];
424 struct strbuf buf = STRBUF_INIT;
425 struct strbuf bname = STRBUF_INIT;
430 strbuf_branchname(&bname, remote);
433 memset(branch_head, 0, sizeof(branch_head));
434 remote_head = get_merge_parent(remote);
436 die(_("'%s' does not point to a commit"), remote);
438 if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
439 if (!prefixcmp(found_ref, "refs/heads/")) {
440 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
441 sha1_to_hex(branch_head), remote);
444 if (!prefixcmp(found_ref, "refs/tags/")) {
445 strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
446 sha1_to_hex(branch_head), remote);
449 if (!prefixcmp(found_ref, "refs/remotes/")) {
450 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
451 sha1_to_hex(branch_head), remote);
456 /* See if remote matches <name>^^^.. or <name>~<number> */
457 for (len = 0, ptr = remote + strlen(remote);
458 remote < ptr && ptr[-1] == '^';
465 ptr = strrchr(remote, '~');
467 int seen_nonzero = 0;
470 while (*++ptr && isdigit(*ptr)) {
471 seen_nonzero |= (*ptr != '0');
475 len = 0; /* not ...~<number> */
476 else if (seen_nonzero)
479 early = 1; /* "name~" is "name~1"! */
483 struct strbuf truname = STRBUF_INIT;
484 strbuf_addstr(&truname, "refs/heads/");
485 strbuf_addstr(&truname, remote);
486 strbuf_setlen(&truname, truname.len - len);
487 if (ref_exists(truname.buf)) {
489 "%s\t\tbranch '%s'%s of .\n",
490 sha1_to_hex(remote_head->object.sha1),
492 (early ? " (early part)" : ""));
493 strbuf_release(&truname);
498 if (!strcmp(remote, "FETCH_HEAD") &&
499 !access(git_path("FETCH_HEAD"), R_OK)) {
500 const char *filename;
502 struct strbuf line = STRBUF_INIT;
505 filename = git_path("FETCH_HEAD");
506 fp = fopen(filename, "r");
508 die_errno(_("could not open '%s' for reading"),
510 strbuf_getline(&line, fp, '\n');
512 ptr = strstr(line.buf, "\tnot-for-merge\t");
514 strbuf_remove(&line, ptr-line.buf+1, 13);
515 strbuf_addbuf(msg, &line);
516 strbuf_release(&line);
520 if (remote_head->util) {
521 struct merge_remote_desc *desc;
522 desc = merge_remote_util(remote_head);
523 if (desc && desc->obj && desc->obj->type == OBJ_TAG) {
524 strbuf_addf(msg, "%s\t\t%s '%s'\n",
525 sha1_to_hex(desc->obj->sha1),
526 typename(desc->obj->type),
532 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
533 sha1_to_hex(remote_head->object.sha1), remote);
535 strbuf_release(&buf);
536 strbuf_release(&bname);
539 static void parse_branch_merge_options(char *bmo)
546 argc = split_cmdline(bmo, &argv);
548 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
549 split_cmdline_strerror(argc));
550 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
551 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
553 argv[0] = "branch.*.mergeoptions";
554 parse_options(argc, argv, NULL, builtin_merge_options,
555 builtin_merge_usage, 0);
559 static int git_merge_config(const char *k, const char *v, void *cb)
563 if (branch && !prefixcmp(k, "branch.") &&
564 !prefixcmp(k + 7, branch) &&
565 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
566 free(branch_mergeoptions);
567 branch_mergeoptions = xstrdup(v);
571 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
572 show_diffstat = git_config_bool(k, v);
573 else if (!strcmp(k, "pull.twohead"))
574 return git_config_string(&pull_twohead, k, v);
575 else if (!strcmp(k, "pull.octopus"))
576 return git_config_string(&pull_octopus, k, v);
577 else if (!strcmp(k, "merge.renormalize"))
578 option_renormalize = git_config_bool(k, v);
579 else if (!strcmp(k, "merge.ff")) {
580 int boolval = git_config_maybe_bool(k, v);
582 allow_fast_forward = boolval;
583 } else if (v && !strcmp(v, "only")) {
584 allow_fast_forward = 1;
585 fast_forward_only = 1;
586 } /* do not barf on values from future versions of git */
588 } else if (!strcmp(k, "merge.defaulttoupstream")) {
589 default_to_upstream = git_config_bool(k, v);
593 status = fmt_merge_msg_config(k, v, cb);
596 status = git_gpg_config(k, v, NULL);
599 return git_diff_ui_config(k, v, cb);
602 static int read_tree_trivial(unsigned char *common, unsigned char *head,
606 struct tree *trees[MAX_UNPACK_TREES];
607 struct tree_desc t[MAX_UNPACK_TREES];
608 struct unpack_trees_options opts;
610 memset(&opts, 0, sizeof(opts));
612 opts.src_index = &the_index;
613 opts.dst_index = &the_index;
615 opts.verbose_update = 1;
616 opts.trivial_merges_only = 1;
618 trees[nr_trees] = parse_tree_indirect(common);
619 if (!trees[nr_trees++])
621 trees[nr_trees] = parse_tree_indirect(head);
622 if (!trees[nr_trees++])
624 trees[nr_trees] = parse_tree_indirect(one);
625 if (!trees[nr_trees++])
627 opts.fn = threeway_merge;
628 cache_tree_free(&active_cache_tree);
629 for (i = 0; i < nr_trees; i++) {
630 parse_tree(trees[i]);
631 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
633 if (unpack_trees(nr_trees, t, &opts))
638 static void write_tree_trivial(unsigned char *sha1)
640 if (write_cache_as_tree(sha1, 0, NULL))
641 die(_("git write-tree failed to write a tree"));
644 static int try_merge_strategy(const char *strategy, struct commit_list *common,
645 struct commit_list *remoteheads,
646 struct commit *head, const char *head_arg)
649 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
651 index_fd = hold_locked_index(lock, 1);
652 refresh_cache(REFRESH_QUIET);
653 if (active_cache_changed &&
654 (write_cache(index_fd, active_cache, active_nr) ||
655 commit_locked_index(lock)))
656 return error(_("Unable to write index."));
657 rollback_lock_file(lock);
659 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
661 struct commit *result;
662 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
664 struct commit_list *reversed = NULL;
665 struct merge_options o;
666 struct commit_list *j;
668 if (remoteheads->next) {
669 error(_("Not handling anything other than two heads merge."));
673 init_merge_options(&o);
674 if (!strcmp(strategy, "subtree"))
675 o.subtree_shift = "";
677 o.renormalize = option_renormalize;
678 o.show_rename_progress =
679 show_progress == -1 ? isatty(2) : show_progress;
681 for (x = 0; x < xopts_nr; x++)
682 if (parse_merge_opt(&o, xopts[x]))
683 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
685 o.branch1 = head_arg;
686 o.branch2 = merge_remote_util(remoteheads->item)->name;
688 for (j = common; j; j = j->next)
689 commit_list_insert(j->item, &reversed);
691 index_fd = hold_locked_index(lock, 1);
692 clean = merge_recursive(&o, head,
693 remoteheads->item, reversed, &result);
694 if (active_cache_changed &&
695 (write_cache(index_fd, active_cache, active_nr) ||
696 commit_locked_index(lock)))
697 die (_("unable to write %s"), get_index_file());
698 rollback_lock_file(lock);
699 return clean ? 0 : 1;
701 return try_merge_command(strategy, xopts_nr, xopts,
702 common, head_arg, remoteheads);
706 static void count_diff_files(struct diff_queue_struct *q,
707 struct diff_options *opt, void *data)
714 static int count_unmerged_entries(void)
718 for (i = 0; i < active_nr; i++)
719 if (ce_stage(active_cache[i]))
725 static void split_merge_strategies(const char *string, struct strategy **list,
733 buf = xstrdup(string);
738 ALLOC_GROW(*list, *nr + 1, *alloc);
739 (*list)[(*nr)++].name = xstrdup(q);
744 ALLOC_GROW(*list, *nr + 1, *alloc);
745 (*list)[(*nr)++].name = xstrdup(q);
751 static void add_strategies(const char *string, unsigned attr)
753 struct strategy *list = NULL;
754 int list_alloc = 0, list_nr = 0, i;
756 memset(&list, 0, sizeof(list));
757 split_merge_strategies(string, &list, &list_nr, &list_alloc);
759 for (i = 0; i < list_nr; i++)
760 append_strategy(get_strategy(list[i].name));
763 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
764 if (all_strategy[i].attr & attr)
765 append_strategy(&all_strategy[i]);
769 static void write_merge_msg(struct strbuf *msg)
771 const char *filename = git_path("MERGE_MSG");
772 int fd = open(filename, O_WRONLY | O_CREAT, 0666);
774 die_errno(_("Could not open '%s' for writing"),
776 if (write_in_full(fd, msg->buf, msg->len) != msg->len)
777 die_errno(_("Could not write to '%s'"), filename);
781 static void read_merge_msg(struct strbuf *msg)
783 const char *filename = git_path("MERGE_MSG");
785 if (strbuf_read_file(msg, filename, 0) < 0)
786 die_errno(_("Could not read from '%s'"), filename);
789 static void write_merge_state(struct commit_list *);
790 static void abort_commit(struct commit_list *remoteheads, const char *err_msg)
793 error("%s", err_msg);
795 _("Not committing merge; use 'git commit' to complete the merge.\n"));
796 write_merge_state(remoteheads);
800 static const char merge_editor_comment[] =
801 N_("Please enter a commit message to explain why this merge is necessary,\n"
802 "especially if it merges an updated upstream into a topic branch.\n"
804 "Lines starting with '%c' will be ignored, and an empty message aborts\n"
807 static void prepare_to_commit(struct commit_list *remoteheads)
809 struct strbuf msg = STRBUF_INIT;
810 strbuf_addbuf(&msg, &merge_msg);
811 strbuf_addch(&msg, '\n');
813 strbuf_commented_addf(&msg, _(merge_editor_comment), comment_line_char);
814 write_merge_msg(&msg);
815 if (run_hook(get_index_file(), "prepare-commit-msg",
816 git_path("MERGE_MSG"), "merge", NULL, NULL))
817 abort_commit(remoteheads, NULL);
818 if (0 < option_edit) {
819 if (launch_editor(git_path("MERGE_MSG"), NULL, NULL))
820 abort_commit(remoteheads, NULL);
822 read_merge_msg(&msg);
823 stripspace(&msg, 0 < option_edit);
825 abort_commit(remoteheads, _("Empty commit message."));
826 strbuf_release(&merge_msg);
827 strbuf_addbuf(&merge_msg, &msg);
828 strbuf_release(&msg);
831 static int merge_trivial(struct commit *head, struct commit_list *remoteheads)
833 unsigned char result_tree[20], result_commit[20];
834 struct commit_list *parent = xmalloc(sizeof(*parent));
836 write_tree_trivial(result_tree);
837 printf(_("Wonderful.\n"));
839 parent->next = xmalloc(sizeof(*parent->next));
840 parent->next->item = remoteheads->item;
841 parent->next->next = NULL;
842 prepare_to_commit(remoteheads);
843 if (commit_tree(&merge_msg, result_tree, parent, result_commit, NULL,
845 die(_("failed to write commit object"));
846 finish(head, remoteheads, result_commit, "In-index merge");
851 static int finish_automerge(struct commit *head,
853 struct commit_list *common,
854 struct commit_list *remoteheads,
855 unsigned char *result_tree,
856 const char *wt_strategy)
858 struct commit_list *parents = NULL;
859 struct strbuf buf = STRBUF_INIT;
860 unsigned char result_commit[20];
862 free_commit_list(common);
863 parents = remoteheads;
864 if (!head_subsumed || !allow_fast_forward)
865 commit_list_insert(head, &parents);
866 strbuf_addch(&merge_msg, '\n');
867 prepare_to_commit(remoteheads);
868 if (commit_tree(&merge_msg, result_tree, parents, result_commit,
870 die(_("failed to write commit object"));
871 strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
872 finish(head, remoteheads, result_commit, buf.buf);
873 strbuf_release(&buf);
878 static int suggest_conflicts(int renormalizing)
880 const char *filename;
884 filename = git_path("MERGE_MSG");
885 fp = fopen(filename, "a");
887 die_errno(_("Could not open '%s' for writing"), filename);
888 fprintf(fp, "\nConflicts:\n");
889 for (pos = 0; pos < active_nr; pos++) {
890 struct cache_entry *ce = active_cache[pos];
893 fprintf(fp, "\t%s\n", ce->name);
894 while (pos + 1 < active_nr &&
896 active_cache[pos + 1]->name))
901 rerere(allow_rerere_auto);
902 printf(_("Automatic merge failed; "
903 "fix conflicts and then commit the result.\n"));
907 static struct commit *is_old_style_invocation(int argc, const char **argv,
908 const unsigned char *head)
910 struct commit *second_token = NULL;
912 unsigned char second_sha1[20];
914 if (get_sha1(argv[1], second_sha1))
916 second_token = lookup_commit_reference_gently(second_sha1, 0);
918 die(_("'%s' is not a commit"), argv[1]);
919 if (hashcmp(second_token->object.sha1, head))
925 static int evaluate_result(void)
930 /* Check how many files differ. */
931 init_revisions(&rev, "");
932 setup_revisions(0, NULL, &rev, NULL);
933 rev.diffopt.output_format |=
934 DIFF_FORMAT_CALLBACK;
935 rev.diffopt.format_callback = count_diff_files;
936 rev.diffopt.format_callback_data = &cnt;
937 run_diff_files(&rev, 0);
940 * Check how many unmerged entries are
943 cnt += count_unmerged_entries();
949 * Pretend as if the user told us to merge with the tracking
950 * branch we have for the upstream of the current branch
952 static int setup_with_upstream(const char ***argv)
954 struct branch *branch = branch_get(NULL);
959 die(_("No current branch."));
961 die(_("No remote for the current branch."));
962 if (!branch->merge_nr)
963 die(_("No default upstream defined for the current branch."));
965 args = xcalloc(branch->merge_nr + 1, sizeof(char *));
966 for (i = 0; i < branch->merge_nr; i++) {
967 if (!branch->merge[i]->dst)
968 die(_("No remote tracking branch for %s from %s"),
969 branch->merge[i]->src, branch->remote_name);
970 args[i] = branch->merge[i]->dst;
977 static void write_merge_state(struct commit_list *remoteheads)
979 const char *filename;
981 struct commit_list *j;
982 struct strbuf buf = STRBUF_INIT;
984 for (j = remoteheads; j; j = j->next) {
985 unsigned const char *sha1;
986 struct commit *c = j->item;
987 if (c->util && merge_remote_util(c)->obj) {
988 sha1 = merge_remote_util(c)->obj->sha1;
990 sha1 = c->object.sha1;
992 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
994 filename = git_path("MERGE_HEAD");
995 fd = open(filename, O_WRONLY | O_CREAT, 0666);
997 die_errno(_("Could not open '%s' for writing"), filename);
998 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
999 die_errno(_("Could not write to '%s'"), filename);
1001 strbuf_addch(&merge_msg, '\n');
1002 write_merge_msg(&merge_msg);
1004 filename = git_path("MERGE_MODE");
1005 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
1007 die_errno(_("Could not open '%s' for writing"), filename);
1009 if (!allow_fast_forward)
1010 strbuf_addf(&buf, "no-ff");
1011 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1012 die_errno(_("Could not write to '%s'"), filename);
1016 static int default_edit_option(void)
1018 static const char name[] = "GIT_MERGE_AUTOEDIT";
1019 const char *e = getenv(name);
1020 struct stat st_stdin, st_stdout;
1023 /* an explicit -m msg without --[no-]edit */
1027 int v = git_config_maybe_bool(name, e);
1029 die("Bad value '%s' in environment '%s'", e, name);
1033 /* Use editor if stdin and stdout are the same and is a tty */
1034 return (!fstat(0, &st_stdin) &&
1035 !fstat(1, &st_stdout) &&
1036 isatty(0) && isatty(1) &&
1037 st_stdin.st_dev == st_stdout.st_dev &&
1038 st_stdin.st_ino == st_stdout.st_ino &&
1039 st_stdin.st_mode == st_stdout.st_mode);
1042 static struct commit_list *collect_parents(struct commit *head_commit,
1044 int argc, const char **argv)
1047 struct commit_list *remoteheads = NULL, *parents, *next;
1048 struct commit_list **remotes = &remoteheads;
1051 remotes = &commit_list_insert(head_commit, remotes)->next;
1052 for (i = 0; i < argc; i++) {
1053 struct commit *commit = get_merge_parent(argv[i]);
1055 die(_("%s - not something we can merge"), argv[i]);
1056 remotes = &commit_list_insert(commit, remotes)->next;
1060 parents = reduce_heads(remoteheads);
1062 *head_subsumed = 1; /* we will flip this to 0 when we find it */
1063 for (remoteheads = NULL, remotes = &remoteheads;
1066 struct commit *commit = parents->item;
1067 next = parents->next;
1068 if (commit == head_commit)
1071 remotes = &commit_list_insert(commit, remotes)->next;
1076 int cmd_merge(int argc, const char **argv, const char *prefix)
1078 unsigned char result_tree[20];
1079 unsigned char stash[20];
1080 unsigned char head_sha1[20];
1081 struct commit *head_commit;
1082 struct strbuf buf = STRBUF_INIT;
1083 const char *head_arg;
1084 int flag, i, ret = 0, head_subsumed;
1085 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1086 struct commit_list *common = NULL;
1087 const char *best_strategy = NULL, *wt_strategy = NULL;
1088 struct commit_list *remoteheads, *p;
1089 void *branch_to_free;
1091 if (argc == 2 && !strcmp(argv[1], "-h"))
1092 usage_with_options(builtin_merge_usage, builtin_merge_options);
1095 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1098 branch = branch_to_free = resolve_refdup("HEAD", head_sha1, 0, &flag);
1099 if (branch && !prefixcmp(branch, "refs/heads/"))
1101 if (!branch || is_null_sha1(head_sha1))
1104 head_commit = lookup_commit_or_die(head_sha1, "HEAD");
1106 git_config(git_merge_config, NULL);
1108 if (branch_mergeoptions)
1109 parse_branch_merge_options(branch_mergeoptions);
1110 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1111 builtin_merge_usage, 0);
1112 if (shortlog_len < 0)
1113 shortlog_len = (merge_log_config > 0) ? merge_log_config : 0;
1115 if (verbosity < 0 && show_progress == -1)
1118 if (abort_current_merge) {
1120 const char *nargv[] = {"reset", "--merge", NULL};
1122 if (!file_exists(git_path("MERGE_HEAD")))
1123 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1125 /* Invoke 'git reset --merge' */
1126 ret = cmd_reset(nargc, nargv, prefix);
1130 if (read_cache_unmerged())
1131 die_resolve_conflict("merge");
1133 if (file_exists(git_path("MERGE_HEAD"))) {
1135 * There is no unmerged entry, don't advise 'git
1136 * add/rm <file>', just 'git commit'.
1138 if (advice_resolve_conflict)
1139 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1140 "Please, commit your changes before you can merge."));
1142 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1144 if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
1145 if (advice_resolve_conflict)
1146 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1147 "Please, commit your changes before you can merge."));
1149 die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1151 resolve_undo_clear();
1157 if (!allow_fast_forward)
1158 die(_("You cannot combine --squash with --no-ff."));
1162 if (!allow_fast_forward && fast_forward_only)
1163 die(_("You cannot combine --no-ff with --ff-only."));
1165 if (!abort_current_merge) {
1167 if (default_to_upstream)
1168 argc = setup_with_upstream(&argv);
1170 die(_("No commit specified and merge.defaultToUpstream not set."));
1171 } else if (argc == 1 && !strcmp(argv[0], "-"))
1175 usage_with_options(builtin_merge_usage,
1176 builtin_merge_options);
1179 * This could be traditional "merge <msg> HEAD <commit>..." and
1180 * the way we can tell it is to see if the second token is HEAD,
1181 * but some people might have misused the interface and used a
1182 * committish that is the same as HEAD there instead.
1183 * Traditional format never would have "-m" so it is an
1184 * additional safety measure to check for it.
1187 if (!have_message && head_commit &&
1188 is_old_style_invocation(argc, argv, head_commit->object.sha1)) {
1189 strbuf_addstr(&merge_msg, argv[0]);
1193 remoteheads = collect_parents(head_commit, &head_subsumed, argc, argv);
1194 } else if (!head_commit) {
1195 struct commit *remote_head;
1197 * If the merged head is a valid one there is no reason
1198 * to forbid "git merge" into a branch yet to be born.
1199 * We do the same for "git pull".
1202 die(_("Can merge only exactly one commit into "
1205 die(_("Squash commit into empty head not supported yet"));
1206 if (!allow_fast_forward)
1207 die(_("Non-fast-forward commit does not make sense into "
1209 remoteheads = collect_parents(head_commit, &head_subsumed, argc, argv);
1210 remote_head = remoteheads->item;
1212 die(_("%s - not something we can merge"), argv[0]);
1213 read_empty(remote_head->object.sha1, 0);
1214 update_ref("initial pull", "HEAD", remote_head->object.sha1,
1215 NULL, 0, DIE_ON_ERR);
1218 struct strbuf merge_names = STRBUF_INIT;
1220 /* We are invoked directly as the first-class UI. */
1224 * All the rest are the commits being merged; prepare
1225 * the standard merge summary message to be appended
1226 * to the given message.
1228 remoteheads = collect_parents(head_commit, &head_subsumed, argc, argv);
1229 for (p = remoteheads; p; p = p->next)
1230 merge_name(merge_remote_util(p->item)->name, &merge_names);
1232 if (!have_message || shortlog_len) {
1233 struct fmt_merge_msg_opts opts;
1234 memset(&opts, 0, sizeof(opts));
1235 opts.add_title = !have_message;
1236 opts.shortlog_len = shortlog_len;
1237 opts.credit_people = (0 < option_edit);
1239 fmt_merge_msg(&merge_names, &merge_msg, &opts);
1241 strbuf_setlen(&merge_msg, merge_msg.len - 1);
1245 if (!head_commit || !argc)
1246 usage_with_options(builtin_merge_usage,
1247 builtin_merge_options);
1249 strbuf_addstr(&buf, "merge");
1250 for (p = remoteheads; p; p = p->next)
1251 strbuf_addf(&buf, " %s", merge_remote_util(p->item)->name);
1252 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1255 for (p = remoteheads; p; p = p->next) {
1256 struct commit *commit = p->item;
1257 strbuf_addf(&buf, "GITHEAD_%s",
1258 sha1_to_hex(commit->object.sha1));
1259 setenv(buf.buf, merge_remote_util(commit)->name, 1);
1261 if (!fast_forward_only &&
1262 merge_remote_util(commit) &&
1263 merge_remote_util(commit)->obj &&
1264 merge_remote_util(commit)->obj->type == OBJ_TAG)
1265 allow_fast_forward = 0;
1268 if (option_edit < 0)
1269 option_edit = default_edit_option();
1271 if (!use_strategies) {
1273 ; /* already up-to-date */
1274 else if (!remoteheads->next)
1275 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1277 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1280 for (i = 0; i < use_strategies_nr; i++) {
1281 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1282 allow_fast_forward = 0;
1283 if (use_strategies[i]->attr & NO_TRIVIAL)
1288 ; /* already up-to-date */
1289 else if (!remoteheads->next)
1290 common = get_merge_bases(head_commit, remoteheads->item, 1);
1292 struct commit_list *list = remoteheads;
1293 commit_list_insert(head_commit, &list);
1294 common = get_octopus_merge_bases(list);
1298 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head_commit->object.sha1,
1299 NULL, 0, DIE_ON_ERR);
1301 if (remoteheads && !common)
1302 ; /* No common ancestors found. We need a real merge. */
1303 else if (!remoteheads ||
1304 (!remoteheads->next && !common->next &&
1305 common->item == remoteheads->item)) {
1307 * If head can reach all the merge then we are up to date.
1308 * but first the most common case of merging one remote.
1310 finish_up_to_date("Already up-to-date.");
1312 } else if (allow_fast_forward && !remoteheads->next &&
1314 !hashcmp(common->item->object.sha1, head_commit->object.sha1)) {
1315 /* Again the most common case of merging one remote. */
1316 struct strbuf msg = STRBUF_INIT;
1317 struct commit *commit;
1320 strcpy(hex, find_unique_abbrev(head_commit->object.sha1, DEFAULT_ABBREV));
1323 printf(_("Updating %s..%s\n"),
1325 find_unique_abbrev(remoteheads->item->object.sha1,
1327 strbuf_addstr(&msg, "Fast-forward");
1330 " (no commit created; -m option ignored)");
1331 commit = remoteheads->item;
1337 if (checkout_fast_forward(head_commit->object.sha1,
1338 commit->object.sha1,
1339 overwrite_ignore)) {
1344 finish(head_commit, remoteheads, commit->object.sha1, msg.buf);
1347 } else if (!remoteheads->next && common->next)
1350 * We are not doing octopus and not fast-forward. Need
1353 else if (!remoteheads->next && !common->next && option_commit) {
1355 * We are not doing octopus, not fast-forward, and have
1358 refresh_cache(REFRESH_QUIET);
1359 if (allow_trivial && !fast_forward_only) {
1360 /* See if it is really trivial. */
1361 git_committer_info(IDENT_STRICT);
1362 printf(_("Trying really trivial in-index merge...\n"));
1363 if (!read_tree_trivial(common->item->object.sha1,
1364 head_commit->object.sha1,
1365 remoteheads->item->object.sha1)) {
1366 ret = merge_trivial(head_commit, remoteheads);
1369 printf(_("Nope.\n"));
1373 * An octopus. If we can reach all the remote we are up
1377 struct commit_list *j;
1379 for (j = remoteheads; j; j = j->next) {
1380 struct commit_list *common_one;
1383 * Here we *have* to calculate the individual
1384 * merge_bases again, otherwise "git merge HEAD^
1385 * HEAD^^" would be missed.
1387 common_one = get_merge_bases(head_commit, j->item, 1);
1388 if (hashcmp(common_one->item->object.sha1,
1389 j->item->object.sha1)) {
1395 finish_up_to_date("Already up-to-date. Yeeah!");
1400 if (fast_forward_only)
1401 die(_("Not possible to fast-forward, aborting."));
1403 /* We are going to make a new commit. */
1404 git_committer_info(IDENT_STRICT);
1407 * At this point, we need a real merge. No matter what strategy
1408 * we use, it would operate on the index, possibly affecting the
1409 * working tree, and when resolved cleanly, have the desired
1410 * tree in the index -- this means that the index must be in
1411 * sync with the head commit. The strategies are responsible
1414 if (use_strategies_nr == 1 ||
1416 * Stash away the local changes so that we can try more than one.
1419 hashcpy(stash, null_sha1);
1421 for (i = 0; i < use_strategies_nr; i++) {
1424 printf(_("Rewinding the tree to pristine...\n"));
1425 restore_state(head_commit->object.sha1, stash);
1427 if (use_strategies_nr != 1)
1428 printf(_("Trying merge strategy %s...\n"),
1429 use_strategies[i]->name);
1431 * Remember which strategy left the state in the working
1434 wt_strategy = use_strategies[i]->name;
1436 ret = try_merge_strategy(use_strategies[i]->name,
1437 common, remoteheads,
1438 head_commit, head_arg);
1439 if (!option_commit && !ret) {
1442 * This is necessary here just to avoid writing
1443 * the tree, but later we will *not* exit with
1444 * status code 1 because merge_was_ok is set.
1451 * The backend exits with 1 when conflicts are
1452 * left to be resolved, with 2 when it does not
1453 * handle the given merge at all.
1456 int cnt = evaluate_result();
1458 if (best_cnt <= 0 || cnt <= best_cnt) {
1459 best_strategy = use_strategies[i]->name;
1469 /* Automerge succeeded. */
1470 write_tree_trivial(result_tree);
1471 automerge_was_ok = 1;
1476 * If we have a resulting tree, that means the strategy module
1477 * auto resolved the merge cleanly.
1479 if (automerge_was_ok) {
1480 ret = finish_automerge(head_commit, head_subsumed,
1481 common, remoteheads,
1482 result_tree, wt_strategy);
1487 * Pick the result from the best strategy and have the user fix
1490 if (!best_strategy) {
1491 restore_state(head_commit->object.sha1, stash);
1492 if (use_strategies_nr > 1)
1494 _("No merge strategy handled the merge.\n"));
1496 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1497 use_strategies[0]->name);
1500 } else if (best_strategy == wt_strategy)
1501 ; /* We already have its result in the working tree. */
1503 printf(_("Rewinding the tree to pristine...\n"));
1504 restore_state(head_commit->object.sha1, stash);
1505 printf(_("Using the %s to prepare resolving by hand.\n"),
1507 try_merge_strategy(best_strategy, common, remoteheads,
1508 head_commit, head_arg);
1512 finish(head_commit, remoteheads, NULL, NULL);
1514 write_merge_state(remoteheads);
1517 fprintf(stderr, _("Automatic merge went well; "
1518 "stopped before committing as requested\n"));
1520 ret = suggest_conflicts(option_renormalize);
1523 free(branch_to_free);