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"
30 #define DEFAULT_TWOHEAD (1<<0)
31 #define DEFAULT_OCTOPUS (1<<1)
32 #define NO_FAST_FORWARD (1<<2)
33 #define NO_TRIVIAL (1<<3)
40 static const char * const builtin_merge_usage[] = {
41 "git merge [options] [<commit>...]",
42 "git merge [options] <msg> HEAD <commit>",
47 static int show_diffstat = 1, shortlog_len, squash;
48 static int option_commit = 1, allow_fast_forward = 1;
49 static int fast_forward_only;
50 static int allow_trivial = 1, have_message;
51 static struct strbuf merge_msg;
52 static struct commit_list *remoteheads;
53 static unsigned char head[20], stash[20];
54 static struct strategy **use_strategies;
55 static size_t use_strategies_nr, use_strategies_alloc;
56 static const char **xopts;
57 static size_t xopts_nr, xopts_alloc;
58 static const char *branch;
59 static int option_renormalize;
61 static int allow_rerere_auto;
62 static int abort_current_merge;
63 static int show_progress = -1;
64 static int default_to_upstream;
66 static struct strategy all_strategy[] = {
67 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
68 { "octopus", DEFAULT_OCTOPUS },
70 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
71 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
74 static const char *pull_twohead, *pull_octopus;
76 static int option_parse_message(const struct option *opt,
77 const char *arg, int unset)
79 struct strbuf *buf = opt->value;
82 strbuf_setlen(buf, 0);
84 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
87 return error(_("switch `m' requires a value"));
91 static struct strategy *get_strategy(const char *name)
95 static struct cmdnames main_cmds, other_cmds;
101 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
102 if (!strcmp(name, all_strategy[i].name))
103 return &all_strategy[i];
106 struct cmdnames not_strategies;
109 memset(¬_strategies, 0, sizeof(struct cmdnames));
110 load_command_list("git-merge-", &main_cmds, &other_cmds);
111 for (i = 0; i < main_cmds.cnt; i++) {
113 struct cmdname *ent = main_cmds.names[i];
114 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
115 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
116 && !all_strategy[j].name[ent->len])
119 add_cmdname(¬_strategies, ent->name, ent->len);
121 exclude_cmds(&main_cmds, ¬_strategies);
123 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
124 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
125 fprintf(stderr, _("Available strategies are:"));
126 for (i = 0; i < main_cmds.cnt; i++)
127 fprintf(stderr, " %s", main_cmds.names[i]->name);
128 fprintf(stderr, ".\n");
129 if (other_cmds.cnt) {
130 fprintf(stderr, _("Available custom strategies are:"));
131 for (i = 0; i < other_cmds.cnt; i++)
132 fprintf(stderr, " %s", other_cmds.names[i]->name);
133 fprintf(stderr, ".\n");
138 ret = xcalloc(1, sizeof(struct strategy));
139 ret->name = xstrdup(name);
140 ret->attr = NO_TRIVIAL;
144 static void append_strategy(struct strategy *s)
146 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
147 use_strategies[use_strategies_nr++] = s;
150 static int option_parse_strategy(const struct option *opt,
151 const char *name, int unset)
156 append_strategy(get_strategy(name));
160 static int option_parse_x(const struct option *opt,
161 const char *arg, int unset)
166 ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
167 xopts[xopts_nr++] = xstrdup(arg);
171 static int option_parse_n(const struct option *opt,
172 const char *arg, int unset)
174 show_diffstat = unset;
178 static struct option builtin_merge_options[] = {
179 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
180 "do not show a diffstat at the end of the merge",
181 PARSE_OPT_NOARG, option_parse_n },
182 OPT_BOOLEAN(0, "stat", &show_diffstat,
183 "show a diffstat at the end of the merge"),
184 OPT_BOOLEAN(0, "summary", &show_diffstat, "(synonym to --stat)"),
185 { OPTION_INTEGER, 0, "log", &shortlog_len, "n",
186 "add (at most <n>) entries from shortlog to merge commit message",
187 PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
188 OPT_BOOLEAN(0, "squash", &squash,
189 "create a single commit instead of doing a merge"),
190 OPT_BOOLEAN(0, "commit", &option_commit,
191 "perform a commit if the merge succeeds (default)"),
192 OPT_BOOLEAN(0, "ff", &allow_fast_forward,
193 "allow fast-forward (default)"),
194 OPT_BOOLEAN(0, "ff-only", &fast_forward_only,
195 "abort if fast-forward is not possible"),
196 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
197 OPT_CALLBACK('s', "strategy", &use_strategies, "strategy",
198 "merge strategy to use", option_parse_strategy),
199 OPT_CALLBACK('X', "strategy-option", &xopts, "option=value",
200 "option for selected merge strategy", option_parse_x),
201 OPT_CALLBACK('m', "message", &merge_msg, "message",
202 "merge commit message (for a non-fast-forward merge)",
203 option_parse_message),
204 OPT__VERBOSITY(&verbosity),
205 OPT_BOOLEAN(0, "abort", &abort_current_merge,
206 "abort the current in-progress merge"),
207 OPT_SET_INT(0, "progress", &show_progress, "force progress reporting", 1),
211 /* Cleans up metadata that is uninteresting after a succeeded merge. */
212 static void drop_save(void)
214 unlink(git_path("MERGE_HEAD"));
215 unlink(git_path("MERGE_MSG"));
216 unlink(git_path("MERGE_MODE"));
219 static void save_state(void)
222 struct child_process cp;
223 struct strbuf buffer = STRBUF_INIT;
224 const char *argv[] = {"stash", "create", NULL};
226 memset(&cp, 0, sizeof(cp));
231 if (start_command(&cp))
232 die(_("could not run stash."));
233 len = strbuf_read(&buffer, cp.out, 1024);
236 if (finish_command(&cp) || len < 0)
237 die(_("stash failed"));
240 strbuf_setlen(&buffer, buffer.len-1);
241 if (get_sha1(buffer.buf, stash))
242 die(_("not a valid object: %s"), buffer.buf);
245 static void read_empty(unsigned const char *sha1, int verbose)
250 args[i++] = "read-tree";
255 args[i++] = EMPTY_TREE_SHA1_HEX;
256 args[i++] = sha1_to_hex(sha1);
259 if (run_command_v_opt(args, RUN_GIT_CMD))
260 die(_("read-tree failed"));
263 static void reset_hard(unsigned const char *sha1, int verbose)
268 args[i++] = "read-tree";
271 args[i++] = "--reset";
273 args[i++] = sha1_to_hex(sha1);
276 if (run_command_v_opt(args, RUN_GIT_CMD))
277 die(_("read-tree failed"));
280 static void restore_state(void)
282 struct strbuf sb = STRBUF_INIT;
283 const char *args[] = { "stash", "apply", NULL, NULL };
285 if (is_null_sha1(stash))
290 args[2] = sha1_to_hex(stash);
293 * It is OK to ignore error here, for example when there was
294 * nothing to restore.
296 run_command_v_opt(args, RUN_GIT_CMD);
299 refresh_cache(REFRESH_QUIET);
302 /* This is called when no merge was necessary. */
303 static void finish_up_to_date(const char *msg)
306 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
310 static void squash_message(void)
313 struct commit *commit;
314 struct strbuf out = STRBUF_INIT;
315 struct commit_list *j;
317 struct pretty_print_context ctx = {0};
319 printf(_("Squash commit -- not updating HEAD\n"));
320 fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
322 die_errno(_("Could not write to '%s'"), git_path("SQUASH_MSG"));
324 init_revisions(&rev, NULL);
325 rev.ignore_merges = 1;
326 rev.commit_format = CMIT_FMT_MEDIUM;
328 commit = lookup_commit(head);
329 commit->object.flags |= UNINTERESTING;
330 add_pending_object(&rev, &commit->object, NULL);
332 for (j = remoteheads; j; j = j->next)
333 add_pending_object(&rev, &j->item->object, NULL);
335 setup_revisions(0, NULL, &rev, NULL);
336 if (prepare_revision_walk(&rev))
337 die(_("revision walk setup failed"));
339 ctx.abbrev = rev.abbrev;
340 ctx.date_mode = rev.date_mode;
342 strbuf_addstr(&out, "Squashed commit of the following:\n");
343 while ((commit = get_revision(&rev)) != NULL) {
344 strbuf_addch(&out, '\n');
345 strbuf_addf(&out, "commit %s\n",
346 sha1_to_hex(commit->object.sha1));
347 pretty_print_commit(rev.commit_format, commit, &out, &ctx);
349 if (write(fd, out.buf, out.len) < 0)
350 die_errno(_("Writing SQUASH_MSG"));
352 die_errno(_("Finishing SQUASH_MSG"));
353 strbuf_release(&out);
356 static void finish(const unsigned char *new_head, const char *msg)
358 struct strbuf reflog_message = STRBUF_INIT;
361 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
365 strbuf_addf(&reflog_message, "%s: %s",
366 getenv("GIT_REFLOG_ACTION"), msg);
371 if (verbosity >= 0 && !merge_msg.len)
372 printf(_("No merge message -- not updating HEAD\n"));
374 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
375 update_ref(reflog_message.buf, "HEAD",
379 * We ignore errors in 'gc --auto', since the
380 * user should see them.
382 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
385 if (new_head && show_diffstat) {
386 struct diff_options opts;
388 opts.output_format |=
389 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
390 opts.detect_rename = DIFF_DETECT_RENAME;
391 if (diff_use_color_default > 0)
392 DIFF_OPT_SET(&opts, COLOR_DIFF);
393 if (diff_setup_done(&opts) < 0)
394 die(_("diff_setup_done failed"));
395 diff_tree_sha1(head, new_head, "", &opts);
400 /* Run a post-merge hook */
401 run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
403 strbuf_release(&reflog_message);
406 /* Get the name for the merge commit's message. */
407 static void merge_name(const char *remote, struct strbuf *msg)
409 struct object *remote_head;
410 unsigned char branch_head[20], buf_sha[20];
411 struct strbuf buf = STRBUF_INIT;
412 struct strbuf bname = STRBUF_INIT;
417 strbuf_branchname(&bname, remote);
420 memset(branch_head, 0, sizeof(branch_head));
421 remote_head = peel_to_type(remote, 0, NULL, OBJ_COMMIT);
423 die(_("'%s' does not point to a commit"), remote);
425 if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
426 if (!prefixcmp(found_ref, "refs/heads/")) {
427 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
428 sha1_to_hex(branch_head), remote);
431 if (!prefixcmp(found_ref, "refs/remotes/")) {
432 strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
433 sha1_to_hex(branch_head), remote);
438 /* See if remote matches <name>^^^.. or <name>~<number> */
439 for (len = 0, ptr = remote + strlen(remote);
440 remote < ptr && ptr[-1] == '^';
447 ptr = strrchr(remote, '~');
449 int seen_nonzero = 0;
452 while (*++ptr && isdigit(*ptr)) {
453 seen_nonzero |= (*ptr != '0');
457 len = 0; /* not ...~<number> */
458 else if (seen_nonzero)
461 early = 1; /* "name~" is "name~1"! */
465 struct strbuf truname = STRBUF_INIT;
466 strbuf_addstr(&truname, "refs/heads/");
467 strbuf_addstr(&truname, remote);
468 strbuf_setlen(&truname, truname.len - len);
469 if (resolve_ref(truname.buf, buf_sha, 1, NULL)) {
471 "%s\t\tbranch '%s'%s of .\n",
472 sha1_to_hex(remote_head->sha1),
474 (early ? " (early part)" : ""));
475 strbuf_release(&truname);
480 if (!strcmp(remote, "FETCH_HEAD") &&
481 !access(git_path("FETCH_HEAD"), R_OK)) {
483 struct strbuf line = STRBUF_INIT;
486 fp = fopen(git_path("FETCH_HEAD"), "r");
488 die_errno(_("could not open '%s' for reading"),
489 git_path("FETCH_HEAD"));
490 strbuf_getline(&line, fp, '\n');
492 ptr = strstr(line.buf, "\tnot-for-merge\t");
494 strbuf_remove(&line, ptr-line.buf+1, 13);
495 strbuf_addbuf(msg, &line);
496 strbuf_release(&line);
499 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
500 sha1_to_hex(remote_head->sha1), remote);
502 strbuf_release(&buf);
503 strbuf_release(&bname);
506 static int git_merge_config(const char *k, const char *v, void *cb)
508 if (branch && !prefixcmp(k, "branch.") &&
509 !prefixcmp(k + 7, branch) &&
510 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
516 argc = split_cmdline(buf, &argv);
518 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
519 split_cmdline_strerror(argc));
520 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
521 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
523 parse_options(argc, argv, NULL, builtin_merge_options,
524 builtin_merge_usage, 0);
528 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
529 show_diffstat = git_config_bool(k, v);
530 else if (!strcmp(k, "pull.twohead"))
531 return git_config_string(&pull_twohead, k, v);
532 else if (!strcmp(k, "pull.octopus"))
533 return git_config_string(&pull_octopus, k, v);
534 else if (!strcmp(k, "merge.renormalize"))
535 option_renormalize = git_config_bool(k, v);
536 else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary")) {
538 shortlog_len = git_config_bool_or_int(k, v, &is_bool);
539 if (!is_bool && shortlog_len < 0)
540 return error(_("%s: negative length %s"), k, v);
541 if (is_bool && shortlog_len)
542 shortlog_len = DEFAULT_MERGE_LOG_LEN;
544 } else if (!strcmp(k, "merge.defaulttoupstream")) {
545 default_to_upstream = git_config_bool(k, v);
548 return git_diff_ui_config(k, v, cb);
551 static int read_tree_trivial(unsigned char *common, unsigned char *head,
555 struct tree *trees[MAX_UNPACK_TREES];
556 struct tree_desc t[MAX_UNPACK_TREES];
557 struct unpack_trees_options opts;
559 memset(&opts, 0, sizeof(opts));
561 opts.src_index = &the_index;
562 opts.dst_index = &the_index;
564 opts.verbose_update = 1;
565 opts.trivial_merges_only = 1;
567 trees[nr_trees] = parse_tree_indirect(common);
568 if (!trees[nr_trees++])
570 trees[nr_trees] = parse_tree_indirect(head);
571 if (!trees[nr_trees++])
573 trees[nr_trees] = parse_tree_indirect(one);
574 if (!trees[nr_trees++])
576 opts.fn = threeway_merge;
577 cache_tree_free(&active_cache_tree);
578 for (i = 0; i < nr_trees; i++) {
579 parse_tree(trees[i]);
580 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
582 if (unpack_trees(nr_trees, t, &opts))
587 static void write_tree_trivial(unsigned char *sha1)
589 if (write_cache_as_tree(sha1, 0, NULL))
590 die(_("git write-tree failed to write a tree"));
593 static const char *merge_argument(struct commit *commit)
596 return sha1_to_hex(commit->object.sha1);
598 return EMPTY_TREE_SHA1_HEX;
601 int try_merge_command(const char *strategy, size_t xopts_nr,
602 const char **xopts, struct commit_list *common,
603 const char *head_arg, struct commit_list *remotes)
606 int i = 0, x = 0, ret;
607 struct commit_list *j;
608 struct strbuf buf = STRBUF_INIT;
610 args = xmalloc((4 + xopts_nr + commit_list_count(common) +
611 commit_list_count(remotes)) * sizeof(char *));
612 strbuf_addf(&buf, "merge-%s", strategy);
614 for (x = 0; x < xopts_nr; x++) {
615 char *s = xmalloc(strlen(xopts[x])+2+1);
617 strcpy(s+2, xopts[x]);
620 for (j = common; j; j = j->next)
621 args[i++] = xstrdup(merge_argument(j->item));
623 args[i++] = head_arg;
624 for (j = remotes; j; j = j->next)
625 args[i++] = xstrdup(merge_argument(j->item));
627 ret = run_command_v_opt(args, RUN_GIT_CMD);
628 strbuf_release(&buf);
630 for (x = 0; x < xopts_nr; x++)
631 free((void *)args[i++]);
632 for (j = common; j; j = j->next)
633 free((void *)args[i++]);
635 for (j = remotes; j; j = j->next)
636 free((void *)args[i++]);
639 if (read_cache() < 0)
640 die(_("failed to read the cache"));
641 resolve_undo_clear();
646 static int try_merge_strategy(const char *strategy, struct commit_list *common,
647 const char *head_arg)
650 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
652 index_fd = hold_locked_index(lock, 1);
653 refresh_cache(REFRESH_QUIET);
654 if (active_cache_changed &&
655 (write_cache(index_fd, active_cache, active_nr) ||
656 commit_locked_index(lock)))
657 return error(_("Unable to write index."));
658 rollback_lock_file(lock);
660 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
662 struct commit *result;
663 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
665 struct commit_list *reversed = NULL;
666 struct merge_options o;
667 struct commit_list *j;
669 if (remoteheads->next) {
670 error(_("Not handling anything other than two heads merge."));
674 init_merge_options(&o);
675 if (!strcmp(strategy, "subtree"))
676 o.subtree_shift = "";
678 o.renormalize = option_renormalize;
679 o.show_rename_progress =
680 show_progress == -1 ? isatty(2) : show_progress;
682 for (x = 0; x < xopts_nr; x++)
683 if (parse_merge_opt(&o, xopts[x]))
684 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
686 o.branch1 = head_arg;
687 o.branch2 = remoteheads->item->util;
689 for (j = common; j; j = j->next)
690 commit_list_insert(j->item, &reversed);
692 index_fd = hold_locked_index(lock, 1);
693 clean = merge_recursive(&o, lookup_commit(head),
694 remoteheads->item, reversed, &result);
695 if (active_cache_changed &&
696 (write_cache(index_fd, active_cache, active_nr) ||
697 commit_locked_index(lock)))
698 die (_("unable to write %s"), get_index_file());
699 rollback_lock_file(lock);
700 return clean ? 0 : 1;
702 return try_merge_command(strategy, xopts_nr, xopts,
703 common, head_arg, remoteheads);
707 static void count_diff_files(struct diff_queue_struct *q,
708 struct diff_options *opt, void *data)
715 static int count_unmerged_entries(void)
719 for (i = 0; i < active_nr; i++)
720 if (ce_stage(active_cache[i]))
726 int checkout_fast_forward(const unsigned char *head, const unsigned char *remote)
728 struct tree *trees[MAX_UNPACK_TREES];
729 struct unpack_trees_options opts;
730 struct tree_desc t[MAX_UNPACK_TREES];
731 int i, fd, nr_trees = 0;
732 struct dir_struct dir;
733 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
735 refresh_cache(REFRESH_QUIET);
737 fd = hold_locked_index(lock_file, 1);
739 memset(&trees, 0, sizeof(trees));
740 memset(&opts, 0, sizeof(opts));
741 memset(&t, 0, sizeof(t));
742 memset(&dir, 0, sizeof(dir));
743 dir.flags |= DIR_SHOW_IGNORED;
744 dir.exclude_per_dir = ".gitignore";
748 opts.src_index = &the_index;
749 opts.dst_index = &the_index;
751 opts.verbose_update = 1;
753 opts.fn = twoway_merge;
754 setup_unpack_trees_porcelain(&opts, "merge");
756 trees[nr_trees] = parse_tree_indirect(head);
757 if (!trees[nr_trees++])
759 trees[nr_trees] = parse_tree_indirect(remote);
760 if (!trees[nr_trees++])
762 for (i = 0; i < nr_trees; i++) {
763 parse_tree(trees[i]);
764 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
766 if (unpack_trees(nr_trees, t, &opts))
768 if (write_cache(fd, active_cache, active_nr) ||
769 commit_locked_index(lock_file))
770 die(_("unable to write new index file"));
774 static void split_merge_strategies(const char *string, struct strategy **list,
782 buf = xstrdup(string);
787 ALLOC_GROW(*list, *nr + 1, *alloc);
788 (*list)[(*nr)++].name = xstrdup(q);
793 ALLOC_GROW(*list, *nr + 1, *alloc);
794 (*list)[(*nr)++].name = xstrdup(q);
800 static void add_strategies(const char *string, unsigned attr)
802 struct strategy *list = NULL;
803 int list_alloc = 0, list_nr = 0, i;
805 memset(&list, 0, sizeof(list));
806 split_merge_strategies(string, &list, &list_nr, &list_alloc);
808 for (i = 0; i < list_nr; i++)
809 append_strategy(get_strategy(list[i].name));
812 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
813 if (all_strategy[i].attr & attr)
814 append_strategy(&all_strategy[i]);
818 static void write_merge_msg(void)
820 int fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
822 die_errno(_("Could not open '%s' for writing"),
823 git_path("MERGE_MSG"));
824 if (write_in_full(fd, merge_msg.buf, merge_msg.len) != merge_msg.len)
825 die_errno(_("Could not write to '%s'"), git_path("MERGE_MSG"));
829 static void read_merge_msg(void)
831 strbuf_reset(&merge_msg);
832 if (strbuf_read_file(&merge_msg, git_path("MERGE_MSG"), 0) < 0)
833 die_errno("Could not read from '%s'", git_path("MERGE_MSG"));
836 static void run_prepare_commit_msg(void)
839 run_hook(get_index_file(), "prepare-commit-msg",
840 git_path("MERGE_MSG"), "merge", NULL, NULL);
844 static int merge_trivial(void)
846 unsigned char result_tree[20], result_commit[20];
847 struct commit_list *parent = xmalloc(sizeof(*parent));
849 write_tree_trivial(result_tree);
850 printf(_("Wonderful.\n"));
851 parent->item = lookup_commit(head);
852 parent->next = xmalloc(sizeof(*parent->next));
853 parent->next->item = remoteheads->item;
854 parent->next->next = NULL;
855 run_prepare_commit_msg();
856 commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
857 finish(result_commit, "In-index merge");
862 static int finish_automerge(struct commit_list *common,
863 unsigned char *result_tree,
864 const char *wt_strategy)
866 struct commit_list *parents = NULL, *j;
867 struct strbuf buf = STRBUF_INIT;
868 unsigned char result_commit[20];
870 free_commit_list(common);
871 if (allow_fast_forward) {
872 parents = remoteheads;
873 commit_list_insert(lookup_commit(head), &parents);
874 parents = reduce_heads(parents);
876 struct commit_list **pptr = &parents;
878 pptr = &commit_list_insert(lookup_commit(head),
880 for (j = remoteheads; j; j = j->next)
881 pptr = &commit_list_insert(j->item, pptr)->next;
883 free_commit_list(remoteheads);
884 strbuf_addch(&merge_msg, '\n');
885 run_prepare_commit_msg();
886 commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
887 strbuf_addf(&buf, "Merge made by %s.", wt_strategy);
888 finish(result_commit, buf.buf);
889 strbuf_release(&buf);
894 static int suggest_conflicts(int renormalizing)
899 fp = fopen(git_path("MERGE_MSG"), "a");
901 die_errno(_("Could not open '%s' for writing"),
902 git_path("MERGE_MSG"));
903 fprintf(fp, "\nConflicts:\n");
904 for (pos = 0; pos < active_nr; pos++) {
905 struct cache_entry *ce = active_cache[pos];
908 fprintf(fp, "\t%s\n", ce->name);
909 while (pos + 1 < active_nr &&
911 active_cache[pos + 1]->name))
916 rerere(allow_rerere_auto);
917 printf(_("Automatic merge failed; "
918 "fix conflicts and then commit the result.\n"));
922 static struct commit *is_old_style_invocation(int argc, const char **argv)
924 struct commit *second_token = NULL;
926 unsigned char second_sha1[20];
928 if (get_sha1(argv[1], second_sha1))
930 second_token = lookup_commit_reference_gently(second_sha1, 0);
932 die(_("'%s' is not a commit"), argv[1]);
933 if (hashcmp(second_token->object.sha1, head))
939 static int evaluate_result(void)
944 /* Check how many files differ. */
945 init_revisions(&rev, "");
946 setup_revisions(0, NULL, &rev, NULL);
947 rev.diffopt.output_format |=
948 DIFF_FORMAT_CALLBACK;
949 rev.diffopt.format_callback = count_diff_files;
950 rev.diffopt.format_callback_data = &cnt;
951 run_diff_files(&rev, 0);
954 * Check how many unmerged entries are
957 cnt += count_unmerged_entries();
963 * Pretend as if the user told us to merge with the tracking
964 * branch we have for the upstream of the current branch
966 static int setup_with_upstream(const char ***argv)
968 struct branch *branch = branch_get(NULL);
973 die("No current branch.");
975 die("No remote for the current branch.");
976 if (!branch->merge_nr)
977 die("No default upstream defined for the current branch.");
979 args = xcalloc(branch->merge_nr + 1, sizeof(char *));
980 for (i = 0; i < branch->merge_nr; i++) {
981 if (!branch->merge[i]->dst)
982 die("No remote tracking branch for %s from %s",
983 branch->merge[i]->src, branch->remote_name);
984 args[i] = branch->merge[i]->dst;
991 int cmd_merge(int argc, const char **argv, const char *prefix)
993 unsigned char result_tree[20];
994 struct strbuf buf = STRBUF_INIT;
995 const char *head_arg;
996 int flag, head_invalid = 0, i;
997 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
998 struct commit_list *common = NULL;
999 const char *best_strategy = NULL, *wt_strategy = NULL;
1000 struct commit_list **remotes = &remoteheads;
1002 if (argc == 2 && !strcmp(argv[1], "-h"))
1003 usage_with_options(builtin_merge_usage, builtin_merge_options);
1006 * Check if we are _not_ on a detached HEAD, i.e. if there is a
1009 branch = resolve_ref("HEAD", head, 0, &flag);
1010 if (branch && !prefixcmp(branch, "refs/heads/"))
1012 if (is_null_sha1(head))
1015 git_config(git_merge_config, NULL);
1018 if (diff_use_color_default == -1)
1019 diff_use_color_default = git_use_color_default;
1021 argc = parse_options(argc, argv, prefix, builtin_merge_options,
1022 builtin_merge_usage, 0);
1024 if (verbosity < 0 && show_progress == -1)
1027 if (abort_current_merge) {
1029 const char *nargv[] = {"reset", "--merge", NULL};
1031 if (!file_exists(git_path("MERGE_HEAD")))
1032 die(_("There is no merge to abort (MERGE_HEAD missing)."));
1034 /* Invoke 'git reset --merge' */
1035 return cmd_reset(nargc, nargv, prefix);
1038 if (read_cache_unmerged())
1039 die_resolve_conflict("merge");
1041 if (file_exists(git_path("MERGE_HEAD"))) {
1043 * There is no unmerged entry, don't advise 'git
1044 * add/rm <file>', just 'git commit'.
1046 if (advice_resolve_conflict)
1047 die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1048 "Please, commit your changes before you can merge."));
1050 die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1052 if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
1053 if (advice_resolve_conflict)
1054 die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1055 "Please, commit your changes before you can merge.");
1057 die("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).");
1059 resolve_undo_clear();
1065 if (!allow_fast_forward)
1066 die(_("You cannot combine --squash with --no-ff."));
1070 if (!allow_fast_forward && fast_forward_only)
1071 die(_("You cannot combine --no-ff with --ff-only."));
1073 if (!argc && !abort_current_merge && default_to_upstream)
1074 argc = setup_with_upstream(&argv);
1077 usage_with_options(builtin_merge_usage,
1078 builtin_merge_options);
1081 * This could be traditional "merge <msg> HEAD <commit>..." and
1082 * the way we can tell it is to see if the second token is HEAD,
1083 * but some people might have misused the interface and used a
1084 * committish that is the same as HEAD there instead.
1085 * Traditional format never would have "-m" so it is an
1086 * additional safety measure to check for it.
1089 if (!have_message && is_old_style_invocation(argc, argv)) {
1090 strbuf_addstr(&merge_msg, argv[0]);
1094 } else if (head_invalid) {
1095 struct object *remote_head;
1097 * If the merged head is a valid one there is no reason
1098 * to forbid "git merge" into a branch yet to be born.
1099 * We do the same for "git pull".
1102 die(_("Can merge only exactly one commit into "
1105 die(_("Squash commit into empty head not supported yet"));
1106 if (!allow_fast_forward)
1107 die(_("Non-fast-forward commit does not make sense into "
1109 remote_head = peel_to_type(argv[0], 0, NULL, OBJ_COMMIT);
1111 die(_("%s - not something we can merge"), argv[0]);
1112 read_empty(remote_head->sha1, 0);
1113 update_ref("initial pull", "HEAD", remote_head->sha1, NULL, 0,
1117 struct strbuf merge_names = STRBUF_INIT;
1119 /* We are invoked directly as the first-class UI. */
1123 * All the rest are the commits being merged;
1124 * prepare the standard merge summary message to
1125 * be appended to the given message. If remote
1126 * is invalid we will die later in the common
1127 * codepath so we discard the error in this
1130 for (i = 0; i < argc; i++)
1131 merge_name(argv[i], &merge_names);
1133 if (!have_message || shortlog_len) {
1134 fmt_merge_msg(&merge_names, &merge_msg, !have_message,
1137 strbuf_setlen(&merge_msg, merge_msg.len - 1);
1141 if (head_invalid || !argc)
1142 usage_with_options(builtin_merge_usage,
1143 builtin_merge_options);
1145 strbuf_addstr(&buf, "merge");
1146 for (i = 0; i < argc; i++)
1147 strbuf_addf(&buf, " %s", argv[i]);
1148 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1151 for (i = 0; i < argc; i++) {
1153 struct commit *commit;
1155 o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
1157 die(_("%s - not something we can merge"), argv[i]);
1158 commit = lookup_commit(o->sha1);
1159 commit->util = (void *)argv[i];
1160 remotes = &commit_list_insert(commit, remotes)->next;
1162 strbuf_addf(&buf, "GITHEAD_%s", sha1_to_hex(o->sha1));
1163 setenv(buf.buf, argv[i], 1);
1167 if (!use_strategies) {
1168 if (!remoteheads->next)
1169 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1171 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1174 for (i = 0; i < use_strategies_nr; i++) {
1175 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1176 allow_fast_forward = 0;
1177 if (use_strategies[i]->attr & NO_TRIVIAL)
1181 if (!remoteheads->next)
1182 common = get_merge_bases(lookup_commit(head),
1183 remoteheads->item, 1);
1185 struct commit_list *list = remoteheads;
1186 commit_list_insert(lookup_commit(head), &list);
1187 common = get_octopus_merge_bases(list);
1191 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head, NULL, 0,
1195 ; /* No common ancestors found. We need a real merge. */
1196 else if (!remoteheads->next && !common->next &&
1197 common->item == remoteheads->item) {
1199 * If head can reach all the merge then we are up to date.
1200 * but first the most common case of merging one remote.
1202 finish_up_to_date("Already up-to-date.");
1204 } else if (allow_fast_forward && !remoteheads->next &&
1206 !hashcmp(common->item->object.sha1, head)) {
1207 /* Again the most common case of merging one remote. */
1208 struct strbuf msg = STRBUF_INIT;
1212 strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV));
1215 printf(_("Updating %s..%s\n"),
1217 find_unique_abbrev(remoteheads->item->object.sha1,
1219 strbuf_addstr(&msg, "Fast-forward");
1222 " (no commit created; -m option ignored)");
1223 o = peel_to_type(sha1_to_hex(remoteheads->item->object.sha1),
1224 0, NULL, OBJ_COMMIT);
1228 if (checkout_fast_forward(head, remoteheads->item->object.sha1))
1231 finish(o->sha1, msg.buf);
1234 } else if (!remoteheads->next && common->next)
1237 * We are not doing octopus and not fast-forward. Need
1240 else if (!remoteheads->next && !common->next && option_commit) {
1242 * We are not doing octopus, not fast-forward, and have
1245 refresh_cache(REFRESH_QUIET);
1246 if (allow_trivial && !fast_forward_only) {
1247 /* See if it is really trivial. */
1248 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1249 printf(_("Trying really trivial in-index merge...\n"));
1250 if (!read_tree_trivial(common->item->object.sha1,
1251 head, remoteheads->item->object.sha1))
1252 return merge_trivial();
1253 printf(_("Nope.\n"));
1257 * An octopus. If we can reach all the remote we are up
1261 struct commit_list *j;
1263 for (j = remoteheads; j; j = j->next) {
1264 struct commit_list *common_one;
1267 * Here we *have* to calculate the individual
1268 * merge_bases again, otherwise "git merge HEAD^
1269 * HEAD^^" would be missed.
1271 common_one = get_merge_bases(lookup_commit(head),
1273 if (hashcmp(common_one->item->object.sha1,
1274 j->item->object.sha1)) {
1280 finish_up_to_date("Already up-to-date. Yeeah!");
1285 if (fast_forward_only)
1286 die(_("Not possible to fast-forward, aborting."));
1288 /* We are going to make a new commit. */
1289 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1292 * At this point, we need a real merge. No matter what strategy
1293 * we use, it would operate on the index, possibly affecting the
1294 * working tree, and when resolved cleanly, have the desired
1295 * tree in the index -- this means that the index must be in
1296 * sync with the head commit. The strategies are responsible
1299 if (use_strategies_nr != 1) {
1301 * Stash away the local changes so that we can try more
1306 memcpy(stash, null_sha1, 20);
1309 for (i = 0; i < use_strategies_nr; i++) {
1312 printf(_("Rewinding the tree to pristine...\n"));
1315 if (use_strategies_nr != 1)
1316 printf(_("Trying merge strategy %s...\n"),
1317 use_strategies[i]->name);
1319 * Remember which strategy left the state in the working
1322 wt_strategy = use_strategies[i]->name;
1324 ret = try_merge_strategy(use_strategies[i]->name,
1326 if (!option_commit && !ret) {
1329 * This is necessary here just to avoid writing
1330 * the tree, but later we will *not* exit with
1331 * status code 1 because merge_was_ok is set.
1338 * The backend exits with 1 when conflicts are
1339 * left to be resolved, with 2 when it does not
1340 * handle the given merge at all.
1343 int cnt = evaluate_result();
1345 if (best_cnt <= 0 || cnt <= best_cnt) {
1346 best_strategy = use_strategies[i]->name;
1356 /* Automerge succeeded. */
1357 write_tree_trivial(result_tree);
1358 automerge_was_ok = 1;
1363 * If we have a resulting tree, that means the strategy module
1364 * auto resolved the merge cleanly.
1366 if (automerge_was_ok)
1367 return finish_automerge(common, result_tree, wt_strategy);
1370 * Pick the result from the best strategy and have the user fix
1373 if (!best_strategy) {
1375 if (use_strategies_nr > 1)
1377 _("No merge strategy handled the merge.\n"));
1379 fprintf(stderr, _("Merge with strategy %s failed.\n"),
1380 use_strategies[0]->name);
1382 } else if (best_strategy == wt_strategy)
1383 ; /* We already have its result in the working tree. */
1385 printf(_("Rewinding the tree to pristine...\n"));
1387 printf(_("Using the %s to prepare resolving by hand.\n"),
1389 try_merge_strategy(best_strategy, common, head_arg);
1396 struct commit_list *j;
1398 for (j = remoteheads; j; j = j->next)
1399 strbuf_addf(&buf, "%s\n",
1400 sha1_to_hex(j->item->object.sha1));
1401 fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1403 die_errno(_("Could not open '%s' for writing"),
1404 git_path("MERGE_HEAD"));
1405 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1406 die_errno(_("Could not write to '%s'"), git_path("MERGE_HEAD"));
1408 strbuf_addch(&merge_msg, '\n');
1410 fd = open(git_path("MERGE_MODE"), O_WRONLY | O_CREAT | O_TRUNC, 0666);
1412 die_errno(_("Could not open '%s' for writing"),
1413 git_path("MERGE_MODE"));
1415 if (!allow_fast_forward)
1416 strbuf_addf(&buf, "no-ff");
1417 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1418 die_errno(_("Could not write to '%s'"), git_path("MERGE_MODE"));
1423 fprintf(stderr, _("Automatic merge went well; "
1424 "stopped before committing as requested\n"));
1427 return suggest_conflicts(option_renormalize);