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"
28 #define DEFAULT_TWOHEAD (1<<0)
29 #define DEFAULT_OCTOPUS (1<<1)
30 #define NO_FAST_FORWARD (1<<2)
31 #define NO_TRIVIAL (1<<3)
38 static const char * const builtin_merge_usage[] = {
39 "git merge [options] <remote>...",
40 "git merge [options] <msg> HEAD <remote>",
44 static int show_diffstat = 1, option_log, squash;
45 static int option_commit = 1, allow_fast_forward = 1;
46 static int fast_forward_only;
47 static int allow_trivial = 1, have_message;
48 static struct strbuf merge_msg;
49 static struct commit_list *remoteheads;
50 static unsigned char head[20], stash[20];
51 static struct strategy **use_strategies;
52 static size_t use_strategies_nr, use_strategies_alloc;
53 static const char *branch;
55 static int allow_rerere_auto;
57 static struct strategy all_strategy[] = {
58 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
59 { "octopus", DEFAULT_OCTOPUS },
61 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
62 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
65 static const char *pull_twohead, *pull_octopus;
67 static int option_parse_message(const struct option *opt,
68 const char *arg, int unset)
70 struct strbuf *buf = opt->value;
73 strbuf_setlen(buf, 0);
75 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
78 return error("switch `m' requires a value");
82 static struct strategy *get_strategy(const char *name)
86 static struct cmdnames main_cmds, other_cmds;
92 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
93 if (!strcmp(name, all_strategy[i].name))
94 return &all_strategy[i];
97 struct cmdnames not_strategies;
100 memset(¬_strategies, 0, sizeof(struct cmdnames));
101 load_command_list("git-merge-", &main_cmds, &other_cmds);
102 for (i = 0; i < main_cmds.cnt; i++) {
104 struct cmdname *ent = main_cmds.names[i];
105 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
106 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
107 && !all_strategy[j].name[ent->len])
110 add_cmdname(¬_strategies, ent->name, ent->len);
112 exclude_cmds(&main_cmds, ¬_strategies);
114 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
115 fprintf(stderr, "Could not find merge strategy '%s'.\n", name);
116 fprintf(stderr, "Available strategies are:");
117 for (i = 0; i < main_cmds.cnt; i++)
118 fprintf(stderr, " %s", main_cmds.names[i]->name);
119 fprintf(stderr, ".\n");
120 if (other_cmds.cnt) {
121 fprintf(stderr, "Available custom strategies are:");
122 for (i = 0; i < other_cmds.cnt; i++)
123 fprintf(stderr, " %s", other_cmds.names[i]->name);
124 fprintf(stderr, ".\n");
129 ret = xcalloc(1, sizeof(struct strategy));
130 ret->name = xstrdup(name);
134 static void append_strategy(struct strategy *s)
136 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
137 use_strategies[use_strategies_nr++] = s;
140 static int option_parse_strategy(const struct option *opt,
141 const char *name, int unset)
146 append_strategy(get_strategy(name));
150 static int option_parse_n(const struct option *opt,
151 const char *arg, int unset)
153 show_diffstat = unset;
157 static struct option builtin_merge_options[] = {
158 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
159 "do not show a diffstat at the end of the merge",
160 PARSE_OPT_NOARG, option_parse_n },
161 OPT_BOOLEAN(0, "stat", &show_diffstat,
162 "show a diffstat at the end of the merge"),
163 OPT_BOOLEAN(0, "summary", &show_diffstat, "(synonym to --stat)"),
164 OPT_BOOLEAN(0, "log", &option_log,
165 "add list of one-line log to merge commit message"),
166 OPT_BOOLEAN(0, "squash", &squash,
167 "create a single commit instead of doing a merge"),
168 OPT_BOOLEAN(0, "commit", &option_commit,
169 "perform a commit if the merge succeeds (default)"),
170 OPT_BOOLEAN(0, "ff", &allow_fast_forward,
171 "allow fast-forward (default)"),
172 OPT_BOOLEAN(0, "ff-only", &fast_forward_only,
173 "abort if fast-forward is not possible"),
174 OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
175 OPT_CALLBACK('s', "strategy", &use_strategies, "strategy",
176 "merge strategy to use", option_parse_strategy),
177 OPT_CALLBACK('m', "message", &merge_msg, "message",
178 "message to be used for the merge commit (if any)",
179 option_parse_message),
180 OPT__VERBOSITY(&verbosity),
184 /* Cleans up metadata that is uninteresting after a succeeded merge. */
185 static void drop_save(void)
187 unlink(git_path("MERGE_HEAD"));
188 unlink(git_path("MERGE_MSG"));
189 unlink(git_path("MERGE_MODE"));
192 static void save_state(void)
195 struct child_process cp;
196 struct strbuf buffer = STRBUF_INIT;
197 const char *argv[] = {"stash", "create", NULL};
199 memset(&cp, 0, sizeof(cp));
204 if (start_command(&cp))
205 die("could not run stash.");
206 len = strbuf_read(&buffer, cp.out, 1024);
209 if (finish_command(&cp) || len < 0)
213 strbuf_setlen(&buffer, buffer.len-1);
214 if (get_sha1(buffer.buf, stash))
215 die("not a valid object: %s", buffer.buf);
218 static void reset_hard(unsigned const char *sha1, int verbose)
223 args[i++] = "read-tree";
226 args[i++] = "--reset";
228 args[i++] = sha1_to_hex(sha1);
231 if (run_command_v_opt(args, RUN_GIT_CMD))
232 die("read-tree failed");
235 static void restore_state(void)
237 struct strbuf sb = STRBUF_INIT;
238 const char *args[] = { "stash", "apply", NULL, NULL };
240 if (is_null_sha1(stash))
245 args[2] = sha1_to_hex(stash);
248 * It is OK to ignore error here, for example when there was
249 * nothing to restore.
251 run_command_v_opt(args, RUN_GIT_CMD);
254 refresh_cache(REFRESH_QUIET);
257 /* This is called when no merge was necessary. */
258 static void finish_up_to_date(const char *msg)
261 printf("%s%s\n", squash ? " (nothing to squash)" : "", msg);
265 static void squash_message(void)
268 struct commit *commit;
269 struct strbuf out = STRBUF_INIT;
270 struct commit_list *j;
272 struct pretty_print_context ctx = {0};
274 printf("Squash commit -- not updating HEAD\n");
275 fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
277 die_errno("Could not write to '%s'", git_path("SQUASH_MSG"));
279 init_revisions(&rev, NULL);
280 rev.ignore_merges = 1;
281 rev.commit_format = CMIT_FMT_MEDIUM;
283 commit = lookup_commit(head);
284 commit->object.flags |= UNINTERESTING;
285 add_pending_object(&rev, &commit->object, NULL);
287 for (j = remoteheads; j; j = j->next)
288 add_pending_object(&rev, &j->item->object, NULL);
290 setup_revisions(0, NULL, &rev, NULL);
291 if (prepare_revision_walk(&rev))
292 die("revision walk setup failed");
294 ctx.abbrev = rev.abbrev;
295 ctx.date_mode = rev.date_mode;
297 strbuf_addstr(&out, "Squashed commit of the following:\n");
298 while ((commit = get_revision(&rev)) != NULL) {
299 strbuf_addch(&out, '\n');
300 strbuf_addf(&out, "commit %s\n",
301 sha1_to_hex(commit->object.sha1));
302 pretty_print_commit(rev.commit_format, commit, &out, &ctx);
304 if (write(fd, out.buf, out.len) < 0)
305 die_errno("Writing SQUASH_MSG");
307 die_errno("Finishing SQUASH_MSG");
308 strbuf_release(&out);
311 static void finish(const unsigned char *new_head, const char *msg)
313 struct strbuf reflog_message = STRBUF_INIT;
316 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
320 strbuf_addf(&reflog_message, "%s: %s",
321 getenv("GIT_REFLOG_ACTION"), msg);
326 if (verbosity >= 0 && !merge_msg.len)
327 printf("No merge message -- not updating HEAD\n");
329 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
330 update_ref(reflog_message.buf, "HEAD",
334 * We ignore errors in 'gc --auto', since the
335 * user should see them.
337 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
340 if (new_head && show_diffstat) {
341 struct diff_options opts;
343 opts.output_format |=
344 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
345 opts.detect_rename = DIFF_DETECT_RENAME;
346 if (diff_use_color_default > 0)
347 DIFF_OPT_SET(&opts, COLOR_DIFF);
348 if (diff_setup_done(&opts) < 0)
349 die("diff_setup_done failed");
350 diff_tree_sha1(head, new_head, "", &opts);
355 /* Run a post-merge hook */
356 run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
358 strbuf_release(&reflog_message);
361 /* Get the name for the merge commit's message. */
362 static void merge_name(const char *remote, struct strbuf *msg)
364 struct object *remote_head;
365 unsigned char branch_head[20], buf_sha[20];
366 struct strbuf buf = STRBUF_INIT;
367 struct strbuf bname = STRBUF_INIT;
372 strbuf_branchname(&bname, remote);
375 memset(branch_head, 0, sizeof(branch_head));
376 remote_head = peel_to_type(remote, 0, NULL, OBJ_COMMIT);
378 die("'%s' does not point to a commit", remote);
380 if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
381 if (!prefixcmp(found_ref, "refs/heads/")) {
382 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
383 sha1_to_hex(branch_head), remote);
386 if (!prefixcmp(found_ref, "refs/remotes/")) {
387 strbuf_addf(msg, "%s\t\tremote branch '%s' of .\n",
388 sha1_to_hex(branch_head), remote);
393 /* See if remote matches <name>^^^.. or <name>~<number> */
394 for (len = 0, ptr = remote + strlen(remote);
395 remote < ptr && ptr[-1] == '^';
402 ptr = strrchr(remote, '~');
404 int seen_nonzero = 0;
407 while (*++ptr && isdigit(*ptr)) {
408 seen_nonzero |= (*ptr != '0');
412 len = 0; /* not ...~<number> */
413 else if (seen_nonzero)
416 early = 1; /* "name~" is "name~1"! */
420 struct strbuf truname = STRBUF_INIT;
421 strbuf_addstr(&truname, "refs/heads/");
422 strbuf_addstr(&truname, remote);
423 strbuf_setlen(&truname, truname.len - len);
424 if (resolve_ref(truname.buf, buf_sha, 0, NULL)) {
426 "%s\t\tbranch '%s'%s of .\n",
427 sha1_to_hex(remote_head->sha1),
429 (early ? " (early part)" : ""));
430 strbuf_release(&truname);
435 if (!strcmp(remote, "FETCH_HEAD") &&
436 !access(git_path("FETCH_HEAD"), R_OK)) {
438 struct strbuf line = STRBUF_INIT;
441 fp = fopen(git_path("FETCH_HEAD"), "r");
443 die_errno("could not open '%s' for reading",
444 git_path("FETCH_HEAD"));
445 strbuf_getline(&line, fp, '\n');
447 ptr = strstr(line.buf, "\tnot-for-merge\t");
449 strbuf_remove(&line, ptr-line.buf+1, 13);
450 strbuf_addbuf(msg, &line);
451 strbuf_release(&line);
454 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
455 sha1_to_hex(remote_head->sha1), remote);
457 strbuf_release(&buf);
458 strbuf_release(&bname);
461 static int git_merge_config(const char *k, const char *v, void *cb)
463 if (branch && !prefixcmp(k, "branch.") &&
464 !prefixcmp(k + 7, branch) &&
465 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
471 argc = split_cmdline(buf, &argv);
473 die("Bad branch.%s.mergeoptions string", branch);
474 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
475 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
477 parse_options(argc, argv, NULL, builtin_merge_options,
478 builtin_merge_usage, 0);
482 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
483 show_diffstat = git_config_bool(k, v);
484 else if (!strcmp(k, "pull.twohead"))
485 return git_config_string(&pull_twohead, k, v);
486 else if (!strcmp(k, "pull.octopus"))
487 return git_config_string(&pull_octopus, k, v);
488 else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary"))
489 option_log = git_config_bool(k, v);
490 return git_diff_ui_config(k, v, cb);
493 static int read_tree_trivial(unsigned char *common, unsigned char *head,
497 struct tree *trees[MAX_UNPACK_TREES];
498 struct tree_desc t[MAX_UNPACK_TREES];
499 struct unpack_trees_options opts;
501 memset(&opts, 0, sizeof(opts));
503 opts.src_index = &the_index;
504 opts.dst_index = &the_index;
506 opts.verbose_update = 1;
507 opts.trivial_merges_only = 1;
509 trees[nr_trees] = parse_tree_indirect(common);
510 if (!trees[nr_trees++])
512 trees[nr_trees] = parse_tree_indirect(head);
513 if (!trees[nr_trees++])
515 trees[nr_trees] = parse_tree_indirect(one);
516 if (!trees[nr_trees++])
518 opts.fn = threeway_merge;
519 cache_tree_free(&active_cache_tree);
520 for (i = 0; i < nr_trees; i++) {
521 parse_tree(trees[i]);
522 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
524 if (unpack_trees(nr_trees, t, &opts))
529 static void write_tree_trivial(unsigned char *sha1)
531 if (write_cache_as_tree(sha1, 0, NULL))
532 die("git write-tree failed to write a tree");
535 static int try_merge_strategy(const char *strategy, struct commit_list *common,
536 const char *head_arg)
540 struct commit_list *j;
541 struct strbuf buf = STRBUF_INIT;
543 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
545 index_fd = hold_locked_index(lock, 1);
546 refresh_cache(REFRESH_QUIET);
547 if (active_cache_changed &&
548 (write_cache(index_fd, active_cache, active_nr) ||
549 commit_locked_index(lock)))
550 return error("Unable to write index.");
551 rollback_lock_file(lock);
553 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
555 struct commit *result;
556 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
558 struct commit_list *reversed = NULL;
559 struct merge_options o;
561 if (remoteheads->next) {
562 error("Not handling anything other than two heads merge.");
566 init_merge_options(&o);
567 if (!strcmp(strategy, "subtree"))
570 o.branch1 = head_arg;
571 o.branch2 = remoteheads->item->util;
573 for (j = common; j; j = j->next)
574 commit_list_insert(j->item, &reversed);
576 index_fd = hold_locked_index(lock, 1);
577 clean = merge_recursive(&o, lookup_commit(head),
578 remoteheads->item, reversed, &result);
579 if (active_cache_changed &&
580 (write_cache(index_fd, active_cache, active_nr) ||
581 commit_locked_index(lock)))
582 die ("unable to write %s", get_index_file());
583 rollback_lock_file(lock);
584 return clean ? 0 : 1;
586 args = xmalloc((4 + commit_list_count(common) +
587 commit_list_count(remoteheads)) * sizeof(char *));
588 strbuf_addf(&buf, "merge-%s", strategy);
590 for (j = common; j; j = j->next)
591 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
593 args[i++] = head_arg;
594 for (j = remoteheads; j; j = j->next)
595 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
597 ret = run_command_v_opt(args, RUN_GIT_CMD);
598 strbuf_release(&buf);
600 for (j = common; j; j = j->next)
601 free((void *)args[i++]);
603 for (j = remoteheads; j; j = j->next)
604 free((void *)args[i++]);
607 if (read_cache() < 0)
608 die("failed to read the cache");
613 static void count_diff_files(struct diff_queue_struct *q,
614 struct diff_options *opt, void *data)
621 static int count_unmerged_entries(void)
623 const struct index_state *state = &the_index;
626 for (i = 0; i < state->cache_nr; i++)
627 if (ce_stage(state->cache[i]))
633 static int checkout_fast_forward(unsigned char *head, unsigned char *remote)
635 struct tree *trees[MAX_UNPACK_TREES];
636 struct unpack_trees_options opts;
637 struct tree_desc t[MAX_UNPACK_TREES];
638 int i, fd, nr_trees = 0;
639 struct dir_struct dir;
640 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
642 refresh_cache(REFRESH_QUIET);
644 fd = hold_locked_index(lock_file, 1);
646 memset(&trees, 0, sizeof(trees));
647 memset(&opts, 0, sizeof(opts));
648 memset(&t, 0, sizeof(t));
649 memset(&dir, 0, sizeof(dir));
650 dir.flags |= DIR_SHOW_IGNORED;
651 dir.exclude_per_dir = ".gitignore";
655 opts.src_index = &the_index;
656 opts.dst_index = &the_index;
658 opts.verbose_update = 1;
660 opts.fn = twoway_merge;
661 opts.msgs = get_porcelain_error_msgs();
663 trees[nr_trees] = parse_tree_indirect(head);
664 if (!trees[nr_trees++])
666 trees[nr_trees] = parse_tree_indirect(remote);
667 if (!trees[nr_trees++])
669 for (i = 0; i < nr_trees; i++) {
670 parse_tree(trees[i]);
671 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
673 if (unpack_trees(nr_trees, t, &opts))
675 if (write_cache(fd, active_cache, active_nr) ||
676 commit_locked_index(lock_file))
677 die("unable to write new index file");
681 static void split_merge_strategies(const char *string, struct strategy **list,
689 buf = xstrdup(string);
694 ALLOC_GROW(*list, *nr + 1, *alloc);
695 (*list)[(*nr)++].name = xstrdup(q);
700 ALLOC_GROW(*list, *nr + 1, *alloc);
701 (*list)[(*nr)++].name = xstrdup(q);
707 static void add_strategies(const char *string, unsigned attr)
709 struct strategy *list = NULL;
710 int list_alloc = 0, list_nr = 0, i;
712 memset(&list, 0, sizeof(list));
713 split_merge_strategies(string, &list, &list_nr, &list_alloc);
715 for (i = 0; i < list_nr; i++)
716 append_strategy(get_strategy(list[i].name));
719 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
720 if (all_strategy[i].attr & attr)
721 append_strategy(&all_strategy[i]);
725 static int merge_trivial(void)
727 unsigned char result_tree[20], result_commit[20];
728 struct commit_list *parent = xmalloc(sizeof(*parent));
730 write_tree_trivial(result_tree);
731 printf("Wonderful.\n");
732 parent->item = lookup_commit(head);
733 parent->next = xmalloc(sizeof(*parent->next));
734 parent->next->item = remoteheads->item;
735 parent->next->next = NULL;
736 commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
737 finish(result_commit, "In-index merge");
742 static int finish_automerge(struct commit_list *common,
743 unsigned char *result_tree,
744 const char *wt_strategy)
746 struct commit_list *parents = NULL, *j;
747 struct strbuf buf = STRBUF_INIT;
748 unsigned char result_commit[20];
750 free_commit_list(common);
751 if (allow_fast_forward) {
752 parents = remoteheads;
753 commit_list_insert(lookup_commit(head), &parents);
754 parents = reduce_heads(parents);
756 struct commit_list **pptr = &parents;
758 pptr = &commit_list_insert(lookup_commit(head),
760 for (j = remoteheads; j; j = j->next)
761 pptr = &commit_list_insert(j->item, pptr)->next;
763 free_commit_list(remoteheads);
764 strbuf_addch(&merge_msg, '\n');
765 commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
766 strbuf_addf(&buf, "Merge made by %s.", wt_strategy);
767 finish(result_commit, buf.buf);
768 strbuf_release(&buf);
773 static int suggest_conflicts(void)
778 fp = fopen(git_path("MERGE_MSG"), "a");
780 die_errno("Could not open '%s' for writing",
781 git_path("MERGE_MSG"));
782 fprintf(fp, "\nConflicts:\n");
783 for (pos = 0; pos < active_nr; pos++) {
784 struct cache_entry *ce = active_cache[pos];
787 fprintf(fp, "\t%s\n", ce->name);
788 while (pos + 1 < active_nr &&
790 active_cache[pos + 1]->name))
795 rerere(allow_rerere_auto);
796 printf("Automatic merge failed; "
797 "fix conflicts and then commit the result.\n");
801 static const char deprecation_warning[] =
802 "'git merge <msg> HEAD <commit>' is deprecated. Please update\n"
803 "your script to use 'git merge -m <msg> <commit>' instead.\n"
804 "In future versions of git, this syntax will be removed.";
806 static struct commit *is_old_style_invocation(int argc, const char **argv)
808 struct commit *second_token = NULL;
810 unsigned char second_sha1[20];
812 if (get_sha1(argv[1], second_sha1))
814 second_token = lookup_commit_reference_gently(second_sha1, 0);
816 die("'%s' is not a commit", argv[1]);
817 if (hashcmp(second_token->object.sha1, head))
819 warning(deprecation_warning);
824 static int evaluate_result(void)
829 /* Check how many files differ. */
830 init_revisions(&rev, "");
831 setup_revisions(0, NULL, &rev, NULL);
832 rev.diffopt.output_format |=
833 DIFF_FORMAT_CALLBACK;
834 rev.diffopt.format_callback = count_diff_files;
835 rev.diffopt.format_callback_data = &cnt;
836 run_diff_files(&rev, 0);
839 * Check how many unmerged entries are
842 cnt += count_unmerged_entries();
847 int cmd_merge(int argc, const char **argv, const char *prefix)
849 unsigned char result_tree[20];
850 struct strbuf buf = STRBUF_INIT;
851 const char *head_arg;
852 int flag, head_invalid = 0, i;
853 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
854 struct commit_list *common = NULL;
855 const char *best_strategy = NULL, *wt_strategy = NULL;
856 struct commit_list **remotes = &remoteheads;
858 if (file_exists(git_path("MERGE_HEAD")))
859 die("You have not concluded your merge. (MERGE_HEAD exists)");
860 if (read_cache_unmerged())
861 die("You are in the middle of a conflicted merge."
862 " (index unmerged)");
865 * Check if we are _not_ on a detached HEAD, i.e. if there is a
868 branch = resolve_ref("HEAD", head, 0, &flag);
869 if (branch && !prefixcmp(branch, "refs/heads/"))
871 if (is_null_sha1(head))
874 git_config(git_merge_config, NULL);
877 if (diff_use_color_default == -1)
878 diff_use_color_default = git_use_color_default;
880 argc = parse_options(argc, argv, prefix, builtin_merge_options,
881 builtin_merge_usage, 0);
886 if (!allow_fast_forward)
887 die("You cannot combine --squash with --no-ff.");
891 if (!allow_fast_forward && fast_forward_only)
892 die("You cannot combine --no-ff with --ff-only.");
895 usage_with_options(builtin_merge_usage,
896 builtin_merge_options);
899 * This could be traditional "merge <msg> HEAD <commit>..." and
900 * the way we can tell it is to see if the second token is HEAD,
901 * but some people might have misused the interface and used a
902 * committish that is the same as HEAD there instead.
903 * Traditional format never would have "-m" so it is an
904 * additional safety measure to check for it.
907 if (!have_message && is_old_style_invocation(argc, argv)) {
908 strbuf_addstr(&merge_msg, argv[0]);
912 } else if (head_invalid) {
913 struct object *remote_head;
915 * If the merged head is a valid one there is no reason
916 * to forbid "git merge" into a branch yet to be born.
917 * We do the same for "git pull".
920 die("Can merge only exactly one commit into "
923 die("Squash commit into empty head not supported yet");
924 if (!allow_fast_forward)
925 die("Non-fast-forward commit does not make sense into "
927 remote_head = peel_to_type(argv[0], 0, NULL, OBJ_COMMIT);
929 die("%s - not something we can merge", argv[0]);
930 update_ref("initial pull", "HEAD", remote_head->sha1, NULL, 0,
932 reset_hard(remote_head->sha1, 0);
935 struct strbuf msg = STRBUF_INIT;
937 /* We are invoked directly as the first-class UI. */
941 * All the rest are the commits being merged;
942 * prepare the standard merge summary message to
943 * be appended to the given message. If remote
944 * is invalid we will die later in the common
945 * codepath so we discard the error in this
949 for (i = 0; i < argc; i++)
950 merge_name(argv[i], &msg);
951 fmt_merge_msg(option_log, &msg, &merge_msg);
953 strbuf_setlen(&merge_msg, merge_msg.len-1);
957 if (head_invalid || !argc)
958 usage_with_options(builtin_merge_usage,
959 builtin_merge_options);
961 strbuf_addstr(&buf, "merge");
962 for (i = 0; i < argc; i++)
963 strbuf_addf(&buf, " %s", argv[i]);
964 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
967 for (i = 0; i < argc; i++) {
969 struct commit *commit;
971 o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
973 die("%s - not something we can merge", argv[i]);
974 commit = lookup_commit(o->sha1);
975 commit->util = (void *)argv[i];
976 remotes = &commit_list_insert(commit, remotes)->next;
978 strbuf_addf(&buf, "GITHEAD_%s", sha1_to_hex(o->sha1));
979 setenv(buf.buf, argv[i], 1);
983 if (!use_strategies) {
984 if (!remoteheads->next)
985 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
987 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
990 for (i = 0; i < use_strategies_nr; i++) {
991 if (use_strategies[i]->attr & NO_FAST_FORWARD)
992 allow_fast_forward = 0;
993 if (use_strategies[i]->attr & NO_TRIVIAL)
997 if (!remoteheads->next)
998 common = get_merge_bases(lookup_commit(head),
999 remoteheads->item, 1);
1001 struct commit_list *list = remoteheads;
1002 commit_list_insert(lookup_commit(head), &list);
1003 common = get_octopus_merge_bases(list);
1007 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head, NULL, 0,
1011 ; /* No common ancestors found. We need a real merge. */
1012 else if (!remoteheads->next && !common->next &&
1013 common->item == remoteheads->item) {
1015 * If head can reach all the merge then we are up to date.
1016 * but first the most common case of merging one remote.
1018 finish_up_to_date("Already up-to-date.");
1020 } else if (allow_fast_forward && !remoteheads->next &&
1022 !hashcmp(common->item->object.sha1, head)) {
1023 /* Again the most common case of merging one remote. */
1024 struct strbuf msg = STRBUF_INIT;
1028 strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV));
1031 printf("Updating %s..%s\n",
1033 find_unique_abbrev(remoteheads->item->object.sha1,
1035 strbuf_addstr(&msg, "Fast-forward");
1038 " (no commit created; -m option ignored)");
1039 o = peel_to_type(sha1_to_hex(remoteheads->item->object.sha1),
1040 0, NULL, OBJ_COMMIT);
1044 if (checkout_fast_forward(head, remoteheads->item->object.sha1))
1047 finish(o->sha1, msg.buf);
1050 } else if (!remoteheads->next && common->next)
1053 * We are not doing octopus and not fast-forward. Need
1056 else if (!remoteheads->next && !common->next && option_commit) {
1058 * We are not doing octopus, not fast-forward, and have
1061 refresh_cache(REFRESH_QUIET);
1062 if (allow_trivial && !fast_forward_only) {
1063 /* See if it is really trivial. */
1064 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1065 printf("Trying really trivial in-index merge...\n");
1066 if (!read_tree_trivial(common->item->object.sha1,
1067 head, remoteheads->item->object.sha1))
1068 return merge_trivial();
1073 * An octopus. If we can reach all the remote we are up
1077 struct commit_list *j;
1079 for (j = remoteheads; j; j = j->next) {
1080 struct commit_list *common_one;
1083 * Here we *have* to calculate the individual
1084 * merge_bases again, otherwise "git merge HEAD^
1085 * HEAD^^" would be missed.
1087 common_one = get_merge_bases(lookup_commit(head),
1089 if (hashcmp(common_one->item->object.sha1,
1090 j->item->object.sha1)) {
1096 finish_up_to_date("Already up-to-date. Yeeah!");
1101 if (fast_forward_only)
1102 die("Not possible to fast-forward, aborting.");
1104 /* We are going to make a new commit. */
1105 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1108 * At this point, we need a real merge. No matter what strategy
1109 * we use, it would operate on the index, possibly affecting the
1110 * working tree, and when resolved cleanly, have the desired
1111 * tree in the index -- this means that the index must be in
1112 * sync with the head commit. The strategies are responsible
1115 if (use_strategies_nr != 1) {
1117 * Stash away the local changes so that we can try more
1122 memcpy(stash, null_sha1, 20);
1125 for (i = 0; i < use_strategies_nr; i++) {
1128 printf("Rewinding the tree to pristine...\n");
1131 if (use_strategies_nr != 1)
1132 printf("Trying merge strategy %s...\n",
1133 use_strategies[i]->name);
1135 * Remember which strategy left the state in the working
1138 wt_strategy = use_strategies[i]->name;
1140 ret = try_merge_strategy(use_strategies[i]->name,
1142 if (!option_commit && !ret) {
1145 * This is necessary here just to avoid writing
1146 * the tree, but later we will *not* exit with
1147 * status code 1 because merge_was_ok is set.
1154 * The backend exits with 1 when conflicts are
1155 * left to be resolved, with 2 when it does not
1156 * handle the given merge at all.
1159 int cnt = evaluate_result();
1161 if (best_cnt <= 0 || cnt <= best_cnt) {
1162 best_strategy = use_strategies[i]->name;
1172 /* Automerge succeeded. */
1173 write_tree_trivial(result_tree);
1174 automerge_was_ok = 1;
1179 * If we have a resulting tree, that means the strategy module
1180 * auto resolved the merge cleanly.
1182 if (automerge_was_ok)
1183 return finish_automerge(common, result_tree, wt_strategy);
1186 * Pick the result from the best strategy and have the user fix
1189 if (!best_strategy) {
1191 if (use_strategies_nr > 1)
1193 "No merge strategy handled the merge.\n");
1195 fprintf(stderr, "Merge with strategy %s failed.\n",
1196 use_strategies[0]->name);
1198 } else if (best_strategy == wt_strategy)
1199 ; /* We already have its result in the working tree. */
1201 printf("Rewinding the tree to pristine...\n");
1203 printf("Using the %s to prepare resolving by hand.\n",
1205 try_merge_strategy(best_strategy, common, head_arg);
1212 struct commit_list *j;
1214 for (j = remoteheads; j; j = j->next)
1215 strbuf_addf(&buf, "%s\n",
1216 sha1_to_hex(j->item->object.sha1));
1217 fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1219 die_errno("Could not open '%s' for writing",
1220 git_path("MERGE_HEAD"));
1221 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1222 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1224 strbuf_addch(&merge_msg, '\n');
1225 fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
1227 die_errno("Could not open '%s' for writing",
1228 git_path("MERGE_MSG"));
1229 if (write_in_full(fd, merge_msg.buf, merge_msg.len) !=
1231 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1233 fd = open(git_path("MERGE_MODE"), O_WRONLY | O_CREAT | O_TRUNC, 0666);
1235 die_errno("Could not open '%s' for writing",
1236 git_path("MERGE_MODE"));
1238 if (!allow_fast_forward)
1239 strbuf_addf(&buf, "no-ff");
1240 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1241 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1246 fprintf(stderr, "Automatic merge went well; "
1247 "stopped before committing as requested\n");
1250 return suggest_conflicts();