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 allow_trivial = 1, have_message;
47 static struct strbuf merge_msg;
48 static struct commit_list *remoteheads;
49 static unsigned char head[20], stash[20];
50 static struct strategy **use_strategies;
51 static size_t use_strategies_nr, use_strategies_alloc;
52 static const char *branch;
55 static struct strategy all_strategy[] = {
56 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
57 { "octopus", DEFAULT_OCTOPUS },
59 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
60 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
63 static const char *pull_twohead, *pull_octopus;
65 static int option_parse_message(const struct option *opt,
66 const char *arg, int unset)
68 struct strbuf *buf = opt->value;
71 strbuf_setlen(buf, 0);
73 strbuf_addf(buf, "%s\n\n", arg);
76 return error("switch `m' requires a value");
80 static struct strategy *get_strategy(const char *name)
84 static struct cmdnames main_cmds, other_cmds;
90 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
91 if (!strcmp(name, all_strategy[i].name))
92 return &all_strategy[i];
95 struct cmdnames not_strategies;
98 memset(¬_strategies, 0, sizeof(struct cmdnames));
99 load_command_list("git-merge-", &main_cmds, &other_cmds);
100 for (i = 0; i < main_cmds.cnt; i++) {
102 struct cmdname *ent = main_cmds.names[i];
103 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
104 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
105 && !all_strategy[j].name[ent->len])
108 add_cmdname(¬_strategies, ent->name, ent->len);
109 exclude_cmds(&main_cmds, ¬_strategies);
112 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
113 fprintf(stderr, "Could not find merge strategy '%s'.\n", name);
114 fprintf(stderr, "Available strategies are:");
115 for (i = 0; i < main_cmds.cnt; i++)
116 fprintf(stderr, " %s", main_cmds.names[i]->name);
117 fprintf(stderr, ".\n");
118 if (other_cmds.cnt) {
119 fprintf(stderr, "Available custom strategies are:");
120 for (i = 0; i < other_cmds.cnt; i++)
121 fprintf(stderr, " %s", other_cmds.names[i]->name);
122 fprintf(stderr, ".\n");
127 ret = xcalloc(1, sizeof(struct strategy));
128 ret->name = xstrdup(name);
132 static void append_strategy(struct strategy *s)
134 ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
135 use_strategies[use_strategies_nr++] = s;
138 static int option_parse_strategy(const struct option *opt,
139 const char *name, int unset)
144 append_strategy(get_strategy(name));
148 static int option_parse_n(const struct option *opt,
149 const char *arg, int unset)
151 show_diffstat = unset;
155 static struct option builtin_merge_options[] = {
156 { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
157 "do not show a diffstat at the end of the merge",
158 PARSE_OPT_NOARG, option_parse_n },
159 OPT_BOOLEAN(0, "stat", &show_diffstat,
160 "show a diffstat at the end of the merge"),
161 OPT_BOOLEAN(0, "summary", &show_diffstat, "(synonym to --stat)"),
162 OPT_BOOLEAN(0, "log", &option_log,
163 "add list of one-line log to merge commit message"),
164 OPT_BOOLEAN(0, "squash", &squash,
165 "create a single commit instead of doing a merge"),
166 OPT_BOOLEAN(0, "commit", &option_commit,
167 "perform a commit if the merge succeeds (default)"),
168 OPT_BOOLEAN(0, "ff", &allow_fast_forward,
169 "allow fast forward (default)"),
170 OPT_CALLBACK('s', "strategy", &use_strategies, "strategy",
171 "merge strategy to use", option_parse_strategy),
172 OPT_CALLBACK('m', "message", &merge_msg, "message",
173 "message to be used for the merge commit (if any)",
174 option_parse_message),
175 OPT__VERBOSITY(&verbosity),
179 /* Cleans up metadata that is uninteresting after a succeeded merge. */
180 static void drop_save(void)
182 unlink(git_path("MERGE_HEAD"));
183 unlink(git_path("MERGE_MSG"));
184 unlink(git_path("MERGE_MODE"));
187 static void save_state(void)
190 struct child_process cp;
191 struct strbuf buffer = STRBUF_INIT;
192 const char *argv[] = {"stash", "create", NULL};
194 memset(&cp, 0, sizeof(cp));
199 if (start_command(&cp))
200 die("could not run stash.");
201 len = strbuf_read(&buffer, cp.out, 1024);
204 if (finish_command(&cp) || len < 0)
208 strbuf_setlen(&buffer, buffer.len-1);
209 if (get_sha1(buffer.buf, stash))
210 die("not a valid object: %s", buffer.buf);
213 static void reset_hard(unsigned const char *sha1, int verbose)
218 args[i++] = "read-tree";
221 args[i++] = "--reset";
223 args[i++] = sha1_to_hex(sha1);
226 if (run_command_v_opt(args, RUN_GIT_CMD))
227 die("read-tree failed");
230 static void restore_state(void)
232 struct strbuf sb = STRBUF_INIT;
233 const char *args[] = { "stash", "apply", NULL, NULL };
235 if (is_null_sha1(stash))
240 args[2] = sha1_to_hex(stash);
243 * It is OK to ignore error here, for example when there was
244 * nothing to restore.
246 run_command_v_opt(args, RUN_GIT_CMD);
249 refresh_cache(REFRESH_QUIET);
252 /* This is called when no merge was necessary. */
253 static void finish_up_to_date(const char *msg)
256 printf("%s%s\n", squash ? " (nothing to squash)" : "", msg);
260 static void squash_message(void)
263 struct commit *commit;
264 struct strbuf out = STRBUF_INIT;
265 struct commit_list *j;
268 printf("Squash commit -- not updating HEAD\n");
269 fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
271 die_errno("Could not write to '%s'", git_path("SQUASH_MSG"));
273 init_revisions(&rev, NULL);
274 rev.ignore_merges = 1;
275 rev.commit_format = CMIT_FMT_MEDIUM;
277 commit = lookup_commit(head);
278 commit->object.flags |= UNINTERESTING;
279 add_pending_object(&rev, &commit->object, NULL);
281 for (j = remoteheads; j; j = j->next)
282 add_pending_object(&rev, &j->item->object, NULL);
284 setup_revisions(0, NULL, &rev, NULL);
285 if (prepare_revision_walk(&rev))
286 die("revision walk setup failed");
288 strbuf_addstr(&out, "Squashed commit of the following:\n");
289 while ((commit = get_revision(&rev)) != NULL) {
290 strbuf_addch(&out, '\n');
291 strbuf_addf(&out, "commit %s\n",
292 sha1_to_hex(commit->object.sha1));
293 pretty_print_commit(rev.commit_format, commit, &out, rev.abbrev,
294 NULL, NULL, rev.date_mode, 0);
296 if (write(fd, out.buf, out.len) < 0)
297 die_errno("Writing SQUASH_MSG");
299 die_errno("Finishing SQUASH_MSG");
300 strbuf_release(&out);
303 static void finish(const unsigned char *new_head, const char *msg)
305 struct strbuf reflog_message = STRBUF_INIT;
308 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
312 strbuf_addf(&reflog_message, "%s: %s",
313 getenv("GIT_REFLOG_ACTION"), msg);
318 if (verbosity >= 0 && !merge_msg.len)
319 printf("No merge message -- not updating HEAD\n");
321 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
322 update_ref(reflog_message.buf, "HEAD",
326 * We ignore errors in 'gc --auto', since the
327 * user should see them.
329 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
332 if (new_head && show_diffstat) {
333 struct diff_options opts;
335 opts.output_format |=
336 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
337 opts.detect_rename = DIFF_DETECT_RENAME;
338 if (diff_use_color_default > 0)
339 DIFF_OPT_SET(&opts, COLOR_DIFF);
340 if (diff_setup_done(&opts) < 0)
341 die("diff_setup_done failed");
342 diff_tree_sha1(head, new_head, "", &opts);
347 /* Run a post-merge hook */
348 run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
350 strbuf_release(&reflog_message);
353 /* Get the name for the merge commit's message. */
354 static void merge_name(const char *remote, struct strbuf *msg)
356 struct object *remote_head;
357 unsigned char branch_head[20], buf_sha[20];
358 struct strbuf buf = STRBUF_INIT;
359 struct strbuf bname = STRBUF_INIT;
364 strbuf_branchname(&bname, remote);
367 memset(branch_head, 0, sizeof(branch_head));
368 remote_head = peel_to_type(remote, 0, NULL, OBJ_COMMIT);
370 die("'%s' does not point to a commit", remote);
372 if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
373 if (!prefixcmp(found_ref, "refs/heads/")) {
374 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
375 sha1_to_hex(branch_head), remote);
378 if (!prefixcmp(found_ref, "refs/remotes/")) {
379 strbuf_addf(msg, "%s\t\tremote branch '%s' of .\n",
380 sha1_to_hex(branch_head), remote);
385 /* See if remote matches <name>^^^.. or <name>~<number> */
386 for (len = 0, ptr = remote + strlen(remote);
387 remote < ptr && ptr[-1] == '^';
394 ptr = strrchr(remote, '~');
396 int seen_nonzero = 0;
399 while (*++ptr && isdigit(*ptr)) {
400 seen_nonzero |= (*ptr != '0');
404 len = 0; /* not ...~<number> */
405 else if (seen_nonzero)
408 early = 1; /* "name~" is "name~1"! */
412 struct strbuf truname = STRBUF_INIT;
413 strbuf_addstr(&truname, "refs/heads/");
414 strbuf_addstr(&truname, remote);
415 strbuf_setlen(&truname, truname.len - len);
416 if (resolve_ref(truname.buf, buf_sha, 0, NULL)) {
418 "%s\t\tbranch '%s'%s of .\n",
419 sha1_to_hex(remote_head->sha1),
421 (early ? " (early part)" : ""));
422 strbuf_release(&truname);
427 if (!strcmp(remote, "FETCH_HEAD") &&
428 !access(git_path("FETCH_HEAD"), R_OK)) {
430 struct strbuf line = STRBUF_INIT;
433 fp = fopen(git_path("FETCH_HEAD"), "r");
435 die_errno("could not open '%s' for reading",
436 git_path("FETCH_HEAD"));
437 strbuf_getline(&line, fp, '\n');
439 ptr = strstr(line.buf, "\tnot-for-merge\t");
441 strbuf_remove(&line, ptr-line.buf+1, 13);
442 strbuf_addbuf(msg, &line);
443 strbuf_release(&line);
446 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
447 sha1_to_hex(remote_head->sha1), remote);
449 strbuf_release(&buf);
450 strbuf_release(&bname);
453 static int git_merge_config(const char *k, const char *v, void *cb)
455 if (branch && !prefixcmp(k, "branch.") &&
456 !prefixcmp(k + 7, branch) &&
457 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
463 argc = split_cmdline(buf, &argv);
465 die("Bad branch.%s.mergeoptions string", branch);
466 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
467 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
469 parse_options(argc, argv, NULL, builtin_merge_options,
470 builtin_merge_usage, 0);
474 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
475 show_diffstat = git_config_bool(k, v);
476 else if (!strcmp(k, "pull.twohead"))
477 return git_config_string(&pull_twohead, k, v);
478 else if (!strcmp(k, "pull.octopus"))
479 return git_config_string(&pull_octopus, k, v);
480 else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary"))
481 option_log = git_config_bool(k, v);
482 return git_diff_ui_config(k, v, cb);
485 static int read_tree_trivial(unsigned char *common, unsigned char *head,
489 struct tree *trees[MAX_UNPACK_TREES];
490 struct tree_desc t[MAX_UNPACK_TREES];
491 struct unpack_trees_options opts;
493 memset(&opts, 0, sizeof(opts));
495 opts.src_index = &the_index;
496 opts.dst_index = &the_index;
498 opts.verbose_update = 1;
499 opts.trivial_merges_only = 1;
501 trees[nr_trees] = parse_tree_indirect(common);
502 if (!trees[nr_trees++])
504 trees[nr_trees] = parse_tree_indirect(head);
505 if (!trees[nr_trees++])
507 trees[nr_trees] = parse_tree_indirect(one);
508 if (!trees[nr_trees++])
510 opts.fn = threeway_merge;
511 cache_tree_free(&active_cache_tree);
512 for (i = 0; i < nr_trees; i++) {
513 parse_tree(trees[i]);
514 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
516 if (unpack_trees(nr_trees, t, &opts))
521 static void write_tree_trivial(unsigned char *sha1)
523 if (write_cache_as_tree(sha1, 0, NULL))
524 die("git write-tree failed to write a tree");
527 static int try_merge_strategy(const char *strategy, struct commit_list *common,
528 const char *head_arg)
532 struct commit_list *j;
533 struct strbuf buf = STRBUF_INIT;
535 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
537 index_fd = hold_locked_index(lock, 1);
538 refresh_cache(REFRESH_QUIET);
539 if (active_cache_changed &&
540 (write_cache(index_fd, active_cache, active_nr) ||
541 commit_locked_index(lock)))
542 return error("Unable to write index.");
543 rollback_lock_file(lock);
545 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
547 struct commit *result;
548 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
550 struct commit_list *reversed = NULL;
551 struct merge_options o;
553 if (remoteheads->next) {
554 error("Not handling anything other than two heads merge.");
558 init_merge_options(&o);
559 if (!strcmp(strategy, "subtree"))
562 o.branch1 = head_arg;
563 o.branch2 = remoteheads->item->util;
565 for (j = common; j; j = j->next)
566 commit_list_insert(j->item, &reversed);
568 index_fd = hold_locked_index(lock, 1);
569 clean = merge_recursive(&o, lookup_commit(head),
570 remoteheads->item, reversed, &result);
571 if (active_cache_changed &&
572 (write_cache(index_fd, active_cache, active_nr) ||
573 commit_locked_index(lock)))
574 die ("unable to write %s", get_index_file());
575 rollback_lock_file(lock);
576 return clean ? 0 : 1;
578 args = xmalloc((4 + commit_list_count(common) +
579 commit_list_count(remoteheads)) * sizeof(char *));
580 strbuf_addf(&buf, "merge-%s", strategy);
582 for (j = common; j; j = j->next)
583 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
585 args[i++] = head_arg;
586 for (j = remoteheads; j; j = j->next)
587 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
589 ret = run_command_v_opt(args, RUN_GIT_CMD);
590 strbuf_release(&buf);
592 for (j = common; j; j = j->next)
593 free((void *)args[i++]);
595 for (j = remoteheads; j; j = j->next)
596 free((void *)args[i++]);
599 if (read_cache() < 0)
600 die("failed to read the cache");
605 static void count_diff_files(struct diff_queue_struct *q,
606 struct diff_options *opt, void *data)
613 static int count_unmerged_entries(void)
615 const struct index_state *state = &the_index;
618 for (i = 0; i < state->cache_nr; i++)
619 if (ce_stage(state->cache[i]))
625 static int checkout_fast_forward(unsigned char *head, unsigned char *remote)
627 struct tree *trees[MAX_UNPACK_TREES];
628 struct unpack_trees_options opts;
629 struct tree_desc t[MAX_UNPACK_TREES];
630 int i, fd, nr_trees = 0;
631 struct dir_struct dir;
632 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
634 refresh_cache(REFRESH_QUIET);
636 fd = hold_locked_index(lock_file, 1);
638 memset(&trees, 0, sizeof(trees));
639 memset(&opts, 0, sizeof(opts));
640 memset(&t, 0, sizeof(t));
641 memset(&dir, 0, sizeof(dir));
642 dir.flags |= DIR_SHOW_IGNORED;
643 dir.exclude_per_dir = ".gitignore";
647 opts.src_index = &the_index;
648 opts.dst_index = &the_index;
650 opts.verbose_update = 1;
652 opts.fn = twoway_merge;
654 trees[nr_trees] = parse_tree_indirect(head);
655 if (!trees[nr_trees++])
657 trees[nr_trees] = parse_tree_indirect(remote);
658 if (!trees[nr_trees++])
660 for (i = 0; i < nr_trees; i++) {
661 parse_tree(trees[i]);
662 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
664 if (unpack_trees(nr_trees, t, &opts))
666 if (write_cache(fd, active_cache, active_nr) ||
667 commit_locked_index(lock_file))
668 die("unable to write new index file");
672 static void split_merge_strategies(const char *string, struct strategy **list,
680 buf = xstrdup(string);
685 ALLOC_GROW(*list, *nr + 1, *alloc);
686 (*list)[(*nr)++].name = xstrdup(q);
691 ALLOC_GROW(*list, *nr + 1, *alloc);
692 (*list)[(*nr)++].name = xstrdup(q);
698 static void add_strategies(const char *string, unsigned attr)
700 struct strategy *list = NULL;
701 int list_alloc = 0, list_nr = 0, i;
703 memset(&list, 0, sizeof(list));
704 split_merge_strategies(string, &list, &list_nr, &list_alloc);
706 for (i = 0; i < list_nr; i++)
707 append_strategy(get_strategy(list[i].name));
710 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
711 if (all_strategy[i].attr & attr)
712 append_strategy(&all_strategy[i]);
716 static int merge_trivial(void)
718 unsigned char result_tree[20], result_commit[20];
719 struct commit_list *parent = xmalloc(sizeof(*parent));
721 write_tree_trivial(result_tree);
722 printf("Wonderful.\n");
723 parent->item = lookup_commit(head);
724 parent->next = xmalloc(sizeof(*parent->next));
725 parent->next->item = remoteheads->item;
726 parent->next->next = NULL;
727 commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
728 finish(result_commit, "In-index merge");
733 static int finish_automerge(struct commit_list *common,
734 unsigned char *result_tree,
735 const char *wt_strategy)
737 struct commit_list *parents = NULL, *j;
738 struct strbuf buf = STRBUF_INIT;
739 unsigned char result_commit[20];
741 free_commit_list(common);
742 if (allow_fast_forward) {
743 parents = remoteheads;
744 commit_list_insert(lookup_commit(head), &parents);
745 parents = reduce_heads(parents);
747 struct commit_list **pptr = &parents;
749 pptr = &commit_list_insert(lookup_commit(head),
751 for (j = remoteheads; j; j = j->next)
752 pptr = &commit_list_insert(j->item, pptr)->next;
754 free_commit_list(remoteheads);
755 strbuf_addch(&merge_msg, '\n');
756 commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
757 strbuf_addf(&buf, "Merge made by %s.", wt_strategy);
758 finish(result_commit, buf.buf);
759 strbuf_release(&buf);
764 static int suggest_conflicts(void)
769 fp = fopen(git_path("MERGE_MSG"), "a");
771 die_errno("Could not open '%s' for writing",
772 git_path("MERGE_MSG"));
773 fprintf(fp, "\nConflicts:\n");
774 for (pos = 0; pos < active_nr; pos++) {
775 struct cache_entry *ce = active_cache[pos];
778 fprintf(fp, "\t%s\n", ce->name);
779 while (pos + 1 < active_nr &&
781 active_cache[pos + 1]->name))
787 printf("Automatic merge failed; "
788 "fix conflicts and then commit the result.\n");
792 static const char deprecation_warning[] =
793 "'git merge <msg> HEAD <commit>' is deprecated. Please update\n"
794 "your script to use 'git merge -m <msg> <commit>' instead.\n"
795 "In future versions of git, this syntax will be removed.";
797 static struct commit *is_old_style_invocation(int argc, const char **argv)
799 struct commit *second_token = NULL;
801 unsigned char second_sha1[20];
803 if (get_sha1(argv[1], second_sha1))
805 second_token = lookup_commit_reference_gently(second_sha1, 0);
807 die("'%s' is not a commit", argv[1]);
808 if (hashcmp(second_token->object.sha1, head))
810 warning(deprecation_warning);
815 static int evaluate_result(void)
820 /* Check how many files differ. */
821 init_revisions(&rev, "");
822 setup_revisions(0, NULL, &rev, NULL);
823 rev.diffopt.output_format |=
824 DIFF_FORMAT_CALLBACK;
825 rev.diffopt.format_callback = count_diff_files;
826 rev.diffopt.format_callback_data = &cnt;
827 run_diff_files(&rev, 0);
830 * Check how many unmerged entries are
833 cnt += count_unmerged_entries();
838 int cmd_merge(int argc, const char **argv, const char *prefix)
840 unsigned char result_tree[20];
841 struct strbuf buf = STRBUF_INIT;
842 const char *head_arg;
843 int flag, head_invalid = 0, i;
844 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
845 struct commit_list *common = NULL;
846 const char *best_strategy = NULL, *wt_strategy = NULL;
847 struct commit_list **remotes = &remoteheads;
850 if (file_exists(git_path("MERGE_HEAD")))
851 die("You have not concluded your merge. (MERGE_HEAD exists)");
852 if (read_cache_unmerged())
853 die("You are in the middle of a conflicted merge."
854 " (index unmerged)");
857 * Check if we are _not_ on a detached HEAD, i.e. if there is a
860 branch = resolve_ref("HEAD", head, 0, &flag);
861 if (branch && !prefixcmp(branch, "refs/heads/"))
863 if (is_null_sha1(head))
866 git_config(git_merge_config, NULL);
869 if (diff_use_color_default == -1)
870 diff_use_color_default = git_use_color_default;
872 argc = parse_options(argc, argv, prefix, builtin_merge_options,
873 builtin_merge_usage, 0);
878 if (!allow_fast_forward)
879 die("You cannot combine --squash with --no-ff.");
884 usage_with_options(builtin_merge_usage,
885 builtin_merge_options);
888 * This could be traditional "merge <msg> HEAD <commit>..." and
889 * the way we can tell it is to see if the second token is HEAD,
890 * but some people might have misused the interface and used a
891 * committish that is the same as HEAD there instead.
892 * Traditional format never would have "-m" so it is an
893 * additional safety measure to check for it.
896 if (!have_message && is_old_style_invocation(argc, argv)) {
897 strbuf_addstr(&merge_msg, argv[0]);
901 } else if (head_invalid) {
902 struct object *remote_head;
904 * If the merged head is a valid one there is no reason
905 * to forbid "git merge" into a branch yet to be born.
906 * We do the same for "git pull".
909 die("Can merge only exactly one commit into "
912 die("Squash commit into empty head not supported yet");
913 if (!allow_fast_forward)
914 die("Non-fast-forward commit does not make sense into "
916 remote_head = peel_to_type(argv[0], 0, NULL, OBJ_COMMIT);
918 die("%s - not something we can merge", argv[0]);
919 update_ref("initial pull", "HEAD", remote_head->sha1, NULL, 0,
921 reset_hard(remote_head->sha1, 0);
924 struct strbuf msg = STRBUF_INIT;
926 /* We are invoked directly as the first-class UI. */
930 * All the rest are the commits being merged;
931 * prepare the standard merge summary message to
932 * be appended to the given message. If remote
933 * is invalid we will die later in the common
934 * codepath so we discard the error in this
937 for (i = 0; i < argc; i++)
938 merge_name(argv[i], &msg);
939 fmt_merge_msg(option_log, &msg, &merge_msg);
941 strbuf_setlen(&merge_msg, merge_msg.len-1);
944 if (head_invalid || !argc)
945 usage_with_options(builtin_merge_usage,
946 builtin_merge_options);
948 strbuf_addstr(&buf, "merge");
949 for (i = 0; i < argc; i++)
950 strbuf_addf(&buf, " %s", argv[i]);
951 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
954 for (i = 0; i < argc; i++) {
956 struct commit *commit;
958 o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
960 die("%s - not something we can merge", argv[i]);
961 commit = lookup_commit(o->sha1);
962 commit->util = (void *)argv[i];
963 remotes = &commit_list_insert(commit, remotes)->next;
965 strbuf_addf(&buf, "GITHEAD_%s", sha1_to_hex(o->sha1));
966 setenv(buf.buf, argv[i], 1);
970 if (!use_strategies) {
971 if (!remoteheads->next)
972 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
974 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
977 for (i = 0; i < use_strategies_nr; i++) {
978 if (use_strategies[i]->attr & NO_FAST_FORWARD)
979 allow_fast_forward = 0;
980 if (use_strategies[i]->attr & NO_TRIVIAL)
984 if (!remoteheads->next)
985 common = get_merge_bases(lookup_commit(head),
986 remoteheads->item, 1);
988 struct commit_list *list = remoteheads;
989 commit_list_insert(lookup_commit(head), &list);
990 common = get_octopus_merge_bases(list);
994 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head, NULL, 0,
998 ; /* No common ancestors found. We need a real merge. */
999 else if (!remoteheads->next && !common->next &&
1000 common->item == remoteheads->item) {
1002 * If head can reach all the merge then we are up to date.
1003 * but first the most common case of merging one remote.
1005 finish_up_to_date("Already up-to-date.");
1007 } else if (allow_fast_forward && !remoteheads->next &&
1009 !hashcmp(common->item->object.sha1, head)) {
1010 /* Again the most common case of merging one remote. */
1011 struct strbuf msg = STRBUF_INIT;
1015 strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV));
1018 printf("Updating %s..%s\n",
1020 find_unique_abbrev(remoteheads->item->object.sha1,
1022 strbuf_addstr(&msg, "Fast forward");
1025 " (no commit created; -m option ignored)");
1026 o = peel_to_type(sha1_to_hex(remoteheads->item->object.sha1),
1027 0, NULL, OBJ_COMMIT);
1031 if (checkout_fast_forward(head, remoteheads->item->object.sha1))
1034 finish(o->sha1, msg.buf);
1037 } else if (!remoteheads->next && common->next)
1040 * We are not doing octopus and not fast forward. Need
1043 else if (!remoteheads->next && !common->next && option_commit) {
1045 * We are not doing octopus, not fast forward, and have
1048 refresh_cache(REFRESH_QUIET);
1049 if (allow_trivial) {
1050 /* See if it is really trivial. */
1051 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1052 printf("Trying really trivial in-index merge...\n");
1053 if (!read_tree_trivial(common->item->object.sha1,
1054 head, remoteheads->item->object.sha1))
1055 return merge_trivial();
1060 * An octopus. If we can reach all the remote we are up
1064 struct commit_list *j;
1066 for (j = remoteheads; j; j = j->next) {
1067 struct commit_list *common_one;
1070 * Here we *have* to calculate the individual
1071 * merge_bases again, otherwise "git merge HEAD^
1072 * HEAD^^" would be missed.
1074 common_one = get_merge_bases(lookup_commit(head),
1076 if (hashcmp(common_one->item->object.sha1,
1077 j->item->object.sha1)) {
1083 finish_up_to_date("Already up-to-date. Yeeah!");
1088 /* We are going to make a new commit. */
1089 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1092 * At this point, we need a real merge. No matter what strategy
1093 * we use, it would operate on the index, possibly affecting the
1094 * working tree, and when resolved cleanly, have the desired
1095 * tree in the index -- this means that the index must be in
1096 * sync with the head commit. The strategies are responsible
1099 if (use_strategies_nr != 1) {
1101 * Stash away the local changes so that we can try more
1106 memcpy(stash, null_sha1, 20);
1109 for (i = 0; i < use_strategies_nr; i++) {
1112 printf("Rewinding the tree to pristine...\n");
1115 if (use_strategies_nr != 1)
1116 printf("Trying merge strategy %s...\n",
1117 use_strategies[i]->name);
1119 * Remember which strategy left the state in the working
1122 wt_strategy = use_strategies[i]->name;
1124 ret = try_merge_strategy(use_strategies[i]->name,
1126 if (!option_commit && !ret) {
1129 * This is necessary here just to avoid writing
1130 * the tree, but later we will *not* exit with
1131 * status code 1 because merge_was_ok is set.
1138 * The backend exits with 1 when conflicts are
1139 * left to be resolved, with 2 when it does not
1140 * handle the given merge at all.
1143 int cnt = evaluate_result();
1145 if (best_cnt <= 0 || cnt <= best_cnt) {
1146 best_strategy = use_strategies[i]->name;
1156 /* Automerge succeeded. */
1157 write_tree_trivial(result_tree);
1158 automerge_was_ok = 1;
1163 * If we have a resulting tree, that means the strategy module
1164 * auto resolved the merge cleanly.
1166 if (automerge_was_ok)
1167 return finish_automerge(common, result_tree, wt_strategy);
1170 * Pick the result from the best strategy and have the user fix
1173 if (!best_strategy) {
1175 if (use_strategies_nr > 1)
1177 "No merge strategy handled the merge.\n");
1179 fprintf(stderr, "Merge with strategy %s failed.\n",
1180 use_strategies[0]->name);
1182 } else if (best_strategy == wt_strategy)
1183 ; /* We already have its result in the working tree. */
1185 printf("Rewinding the tree to pristine...\n");
1187 printf("Using the %s to prepare resolving by hand.\n",
1189 try_merge_strategy(best_strategy, common, head_arg);
1196 struct commit_list *j;
1198 for (j = remoteheads; j; j = j->next)
1199 strbuf_addf(&buf, "%s\n",
1200 sha1_to_hex(j->item->object.sha1));
1201 fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1203 die_errno("Could not open '%s' for writing",
1204 git_path("MERGE_HEAD"));
1205 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1206 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1208 strbuf_addch(&merge_msg, '\n');
1209 fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
1211 die_errno("Could not open '%s' for writing",
1212 git_path("MERGE_MSG"));
1213 if (write_in_full(fd, merge_msg.buf, merge_msg.len) !=
1215 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1217 fd = open(git_path("MERGE_MODE"), O_WRONLY | O_CREAT | O_TRUNC, 0666);
1219 die_errno("Could not open '%s' for writing",
1220 git_path("MERGE_MODE"));
1222 if (!allow_fast_forward)
1223 strbuf_addf(&buf, "no-ff");
1224 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1225 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1230 fprintf(stderr, "Automatic merge went well; "
1231 "stopped before committing as requested\n");
1234 return suggest_conflicts();