merge: fix incorrect merge message for ambiguous tag/branch
[git/gitweb.git] / builtin-merge.c
blobf7db14846ecbca6b0f928237951d9505b68e5d6a
1 /*
2 * Builtin "git merge"
4 * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
6 * Based on git-merge.sh by Junio C Hamano.
7 */
9 #include "cache.h"
10 #include "parse-options.h"
11 #include "builtin.h"
12 #include "run-command.h"
13 #include "diff.h"
14 #include "refs.h"
15 #include "commit.h"
16 #include "diffcore.h"
17 #include "revision.h"
18 #include "unpack-trees.h"
19 #include "cache-tree.h"
20 #include "dir.h"
21 #include "utf8.h"
22 #include "log-tree.h"
23 #include "color.h"
24 #include "rerere.h"
25 #include "help.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)
33 struct strategy {
34 const char *name;
35 unsigned attr;
38 static const char * const builtin_merge_usage[] = {
39 "git merge [options] <remote>...",
40 "git merge [options] <msg> HEAD <remote>",
41 NULL
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;
53 static int verbosity;
55 static struct strategy all_strategy[] = {
56 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
57 { "octopus", DEFAULT_OCTOPUS },
58 { "resolve", 0 },
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;
70 if (unset)
71 strbuf_setlen(buf, 0);
72 else if (arg) {
73 strbuf_addf(buf, "%s\n\n", arg);
74 have_message = 1;
75 } else
76 return error("switch `m' requires a value");
77 return 0;
80 static struct strategy *get_strategy(const char *name)
82 int i;
83 struct strategy *ret;
84 static struct cmdnames main_cmds, other_cmds;
85 static int loaded;
87 if (!name)
88 return NULL;
90 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
91 if (!strcmp(name, all_strategy[i].name))
92 return &all_strategy[i];
94 if (!loaded) {
95 struct cmdnames not_strategies;
96 loaded = 1;
98 memset(&not_strategies, 0, sizeof(struct cmdnames));
99 load_command_list("git-merge-", &main_cmds, &other_cmds);
100 for (i = 0; i < main_cmds.cnt; i++) {
101 int j, found = 0;
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])
106 found = 1;
107 if (!found)
108 add_cmdname(&not_strategies, ent->name, ent->len);
109 exclude_cmds(&main_cmds, &not_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");
124 exit(1);
127 ret = xcalloc(1, sizeof(struct strategy));
128 ret->name = xstrdup(name);
129 return ret;
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)
141 if (unset)
142 return 0;
144 append_strategy(get_strategy(name));
145 return 0;
148 static int option_parse_n(const struct option *opt,
149 const char *arg, int unset)
151 show_diffstat = unset;
152 return 0;
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),
176 OPT_END()
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)
189 int len;
190 struct child_process cp;
191 struct strbuf buffer = STRBUF_INIT;
192 const char *argv[] = {"stash", "create", NULL};
194 memset(&cp, 0, sizeof(cp));
195 cp.argv = argv;
196 cp.out = -1;
197 cp.git_cmd = 1;
199 if (start_command(&cp))
200 die("could not run stash.");
201 len = strbuf_read(&buffer, cp.out, 1024);
202 close(cp.out);
204 if (finish_command(&cp) || len < 0)
205 die("stash failed");
206 else if (!len)
207 return;
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)
215 int i = 0;
216 const char *args[6];
218 args[i++] = "read-tree";
219 if (verbose)
220 args[i++] = "-v";
221 args[i++] = "--reset";
222 args[i++] = "-u";
223 args[i++] = sha1_to_hex(sha1);
224 args[i] = NULL;
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))
236 return;
238 reset_hard(head, 1);
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);
248 strbuf_release(&sb);
249 refresh_cache(REFRESH_QUIET);
252 /* This is called when no merge was necessary. */
253 static void finish_up_to_date(const char *msg)
255 if (verbosity >= 0)
256 printf("%s%s\n", squash ? " (nothing to squash)" : "", msg);
257 drop_save();
260 static void squash_message(void)
262 struct rev_info rev;
263 struct commit *commit;
264 struct strbuf out = STRBUF_INIT;
265 struct commit_list *j;
266 int fd;
268 printf("Squash commit -- not updating HEAD\n");
269 fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
270 if (fd < 0)
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");
298 if (close(fd))
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;
307 if (!msg)
308 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
309 else {
310 if (verbosity >= 0)
311 printf("%s\n", msg);
312 strbuf_addf(&reflog_message, "%s: %s",
313 getenv("GIT_REFLOG_ACTION"), msg);
315 if (squash) {
316 squash_message();
317 } else {
318 if (verbosity >= 0 && !merge_msg.len)
319 printf("No merge message -- not updating HEAD\n");
320 else {
321 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
322 update_ref(reflog_message.buf, "HEAD",
323 new_head, head, 0,
324 DIE_ON_ERR);
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;
334 diff_setup(&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);
343 diffcore_std(&opts);
344 diff_flush(&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;
360 const char *ptr;
361 char *found_ref;
362 int len, early;
364 strbuf_branchname(&bname, remote);
365 remote = bname.buf;
367 memset(branch_head, 0, sizeof(branch_head));
368 remote_head = peel_to_type(remote, 0, NULL, OBJ_COMMIT);
369 if (!remote_head)
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);
376 goto cleanup;
380 /* See if remote matches <name>^^^.. or <name>~<number> */
381 for (len = 0, ptr = remote + strlen(remote);
382 remote < ptr && ptr[-1] == '^';
383 ptr--)
384 len++;
385 if (len)
386 early = 1;
387 else {
388 early = 0;
389 ptr = strrchr(remote, '~');
390 if (ptr) {
391 int seen_nonzero = 0;
393 len++; /* count ~ */
394 while (*++ptr && isdigit(*ptr)) {
395 seen_nonzero |= (*ptr != '0');
396 len++;
398 if (*ptr)
399 len = 0; /* not ...~<number> */
400 else if (seen_nonzero)
401 early = 1;
402 else if (len == 1)
403 early = 1; /* "name~" is "name~1"! */
406 if (len) {
407 struct strbuf truname = STRBUF_INIT;
408 strbuf_addstr(&truname, "refs/heads/");
409 strbuf_addstr(&truname, remote);
410 strbuf_setlen(&truname, truname.len - len);
411 if (resolve_ref(truname.buf, buf_sha, 0, NULL)) {
412 strbuf_addf(msg,
413 "%s\t\tbranch '%s'%s of .\n",
414 sha1_to_hex(remote_head->sha1),
415 truname.buf + 11,
416 (early ? " (early part)" : ""));
417 strbuf_release(&truname);
418 goto cleanup;
422 if (!strcmp(remote, "FETCH_HEAD") &&
423 !access(git_path("FETCH_HEAD"), R_OK)) {
424 FILE *fp;
425 struct strbuf line = STRBUF_INIT;
426 char *ptr;
428 fp = fopen(git_path("FETCH_HEAD"), "r");
429 if (!fp)
430 die_errno("could not open '%s' for reading",
431 git_path("FETCH_HEAD"));
432 strbuf_getline(&line, fp, '\n');
433 fclose(fp);
434 ptr = strstr(line.buf, "\tnot-for-merge\t");
435 if (ptr)
436 strbuf_remove(&line, ptr-line.buf+1, 13);
437 strbuf_addbuf(msg, &line);
438 strbuf_release(&line);
439 goto cleanup;
441 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
442 sha1_to_hex(remote_head->sha1), remote);
443 cleanup:
444 strbuf_release(&buf);
445 strbuf_release(&bname);
448 static int git_merge_config(const char *k, const char *v, void *cb)
450 if (branch && !prefixcmp(k, "branch.") &&
451 !prefixcmp(k + 7, branch) &&
452 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
453 const char **argv;
454 int argc;
455 char *buf;
457 buf = xstrdup(v);
458 argc = split_cmdline(buf, &argv);
459 if (argc < 0)
460 die("Bad branch.%s.mergeoptions string", branch);
461 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
462 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
463 argc++;
464 parse_options(argc, argv, NULL, builtin_merge_options,
465 builtin_merge_usage, 0);
466 free(buf);
469 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
470 show_diffstat = git_config_bool(k, v);
471 else if (!strcmp(k, "pull.twohead"))
472 return git_config_string(&pull_twohead, k, v);
473 else if (!strcmp(k, "pull.octopus"))
474 return git_config_string(&pull_octopus, k, v);
475 else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary"))
476 option_log = git_config_bool(k, v);
477 return git_diff_ui_config(k, v, cb);
480 static int read_tree_trivial(unsigned char *common, unsigned char *head,
481 unsigned char *one)
483 int i, nr_trees = 0;
484 struct tree *trees[MAX_UNPACK_TREES];
485 struct tree_desc t[MAX_UNPACK_TREES];
486 struct unpack_trees_options opts;
488 memset(&opts, 0, sizeof(opts));
489 opts.head_idx = 2;
490 opts.src_index = &the_index;
491 opts.dst_index = &the_index;
492 opts.update = 1;
493 opts.verbose_update = 1;
494 opts.trivial_merges_only = 1;
495 opts.merge = 1;
496 trees[nr_trees] = parse_tree_indirect(common);
497 if (!trees[nr_trees++])
498 return -1;
499 trees[nr_trees] = parse_tree_indirect(head);
500 if (!trees[nr_trees++])
501 return -1;
502 trees[nr_trees] = parse_tree_indirect(one);
503 if (!trees[nr_trees++])
504 return -1;
505 opts.fn = threeway_merge;
506 cache_tree_free(&active_cache_tree);
507 for (i = 0; i < nr_trees; i++) {
508 parse_tree(trees[i]);
509 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
511 if (unpack_trees(nr_trees, t, &opts))
512 return -1;
513 return 0;
516 static void write_tree_trivial(unsigned char *sha1)
518 if (write_cache_as_tree(sha1, 0, NULL))
519 die("git write-tree failed to write a tree");
522 static int try_merge_strategy(const char *strategy, struct commit_list *common,
523 const char *head_arg)
525 const char **args;
526 int i = 0, ret;
527 struct commit_list *j;
528 struct strbuf buf = STRBUF_INIT;
529 int index_fd;
530 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
532 index_fd = hold_locked_index(lock, 1);
533 refresh_cache(REFRESH_QUIET);
534 if (active_cache_changed &&
535 (write_cache(index_fd, active_cache, active_nr) ||
536 commit_locked_index(lock)))
537 return error("Unable to write index.");
538 rollback_lock_file(lock);
540 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
541 int clean;
542 struct commit *result;
543 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
544 int index_fd;
545 struct commit_list *reversed = NULL;
546 struct merge_options o;
548 if (remoteheads->next) {
549 error("Not handling anything other than two heads merge.");
550 return 2;
553 init_merge_options(&o);
554 if (!strcmp(strategy, "subtree"))
555 o.subtree_merge = 1;
557 o.branch1 = head_arg;
558 o.branch2 = remoteheads->item->util;
560 for (j = common; j; j = j->next)
561 commit_list_insert(j->item, &reversed);
563 index_fd = hold_locked_index(lock, 1);
564 clean = merge_recursive(&o, lookup_commit(head),
565 remoteheads->item, reversed, &result);
566 if (active_cache_changed &&
567 (write_cache(index_fd, active_cache, active_nr) ||
568 commit_locked_index(lock)))
569 die ("unable to write %s", get_index_file());
570 rollback_lock_file(lock);
571 return clean ? 0 : 1;
572 } else {
573 args = xmalloc((4 + commit_list_count(common) +
574 commit_list_count(remoteheads)) * sizeof(char *));
575 strbuf_addf(&buf, "merge-%s", strategy);
576 args[i++] = buf.buf;
577 for (j = common; j; j = j->next)
578 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
579 args[i++] = "--";
580 args[i++] = head_arg;
581 for (j = remoteheads; j; j = j->next)
582 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
583 args[i] = NULL;
584 ret = run_command_v_opt(args, RUN_GIT_CMD);
585 strbuf_release(&buf);
586 i = 1;
587 for (j = common; j; j = j->next)
588 free((void *)args[i++]);
589 i += 2;
590 for (j = remoteheads; j; j = j->next)
591 free((void *)args[i++]);
592 free(args);
593 discard_cache();
594 if (read_cache() < 0)
595 die("failed to read the cache");
596 return -ret;
600 static void count_diff_files(struct diff_queue_struct *q,
601 struct diff_options *opt, void *data)
603 int *count = data;
605 (*count) += q->nr;
608 static int count_unmerged_entries(void)
610 const struct index_state *state = &the_index;
611 int i, ret = 0;
613 for (i = 0; i < state->cache_nr; i++)
614 if (ce_stage(state->cache[i]))
615 ret++;
617 return ret;
620 static int checkout_fast_forward(unsigned char *head, unsigned char *remote)
622 struct tree *trees[MAX_UNPACK_TREES];
623 struct unpack_trees_options opts;
624 struct tree_desc t[MAX_UNPACK_TREES];
625 int i, fd, nr_trees = 0;
626 struct dir_struct dir;
627 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
629 refresh_cache(REFRESH_QUIET);
631 fd = hold_locked_index(lock_file, 1);
633 memset(&trees, 0, sizeof(trees));
634 memset(&opts, 0, sizeof(opts));
635 memset(&t, 0, sizeof(t));
636 memset(&dir, 0, sizeof(dir));
637 dir.flags |= DIR_SHOW_IGNORED;
638 dir.exclude_per_dir = ".gitignore";
639 opts.dir = &dir;
641 opts.head_idx = 1;
642 opts.src_index = &the_index;
643 opts.dst_index = &the_index;
644 opts.update = 1;
645 opts.verbose_update = 1;
646 opts.merge = 1;
647 opts.fn = twoway_merge;
649 trees[nr_trees] = parse_tree_indirect(head);
650 if (!trees[nr_trees++])
651 return -1;
652 trees[nr_trees] = parse_tree_indirect(remote);
653 if (!trees[nr_trees++])
654 return -1;
655 for (i = 0; i < nr_trees; i++) {
656 parse_tree(trees[i]);
657 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
659 if (unpack_trees(nr_trees, t, &opts))
660 return -1;
661 if (write_cache(fd, active_cache, active_nr) ||
662 commit_locked_index(lock_file))
663 die("unable to write new index file");
664 return 0;
667 static void split_merge_strategies(const char *string, struct strategy **list,
668 int *nr, int *alloc)
670 char *p, *q, *buf;
672 if (!string)
673 return;
675 buf = xstrdup(string);
676 q = buf;
677 for (;;) {
678 p = strchr(q, ' ');
679 if (!p) {
680 ALLOC_GROW(*list, *nr + 1, *alloc);
681 (*list)[(*nr)++].name = xstrdup(q);
682 free(buf);
683 return;
684 } else {
685 *p = '\0';
686 ALLOC_GROW(*list, *nr + 1, *alloc);
687 (*list)[(*nr)++].name = xstrdup(q);
688 q = ++p;
693 static void add_strategies(const char *string, unsigned attr)
695 struct strategy *list = NULL;
696 int list_alloc = 0, list_nr = 0, i;
698 memset(&list, 0, sizeof(list));
699 split_merge_strategies(string, &list, &list_nr, &list_alloc);
700 if (list) {
701 for (i = 0; i < list_nr; i++)
702 append_strategy(get_strategy(list[i].name));
703 return;
705 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
706 if (all_strategy[i].attr & attr)
707 append_strategy(&all_strategy[i]);
711 static int merge_trivial(void)
713 unsigned char result_tree[20], result_commit[20];
714 struct commit_list *parent = xmalloc(sizeof(*parent));
716 write_tree_trivial(result_tree);
717 printf("Wonderful.\n");
718 parent->item = lookup_commit(head);
719 parent->next = xmalloc(sizeof(*parent->next));
720 parent->next->item = remoteheads->item;
721 parent->next->next = NULL;
722 commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
723 finish(result_commit, "In-index merge");
724 drop_save();
725 return 0;
728 static int finish_automerge(struct commit_list *common,
729 unsigned char *result_tree,
730 const char *wt_strategy)
732 struct commit_list *parents = NULL, *j;
733 struct strbuf buf = STRBUF_INIT;
734 unsigned char result_commit[20];
736 free_commit_list(common);
737 if (allow_fast_forward) {
738 parents = remoteheads;
739 commit_list_insert(lookup_commit(head), &parents);
740 parents = reduce_heads(parents);
741 } else {
742 struct commit_list **pptr = &parents;
744 pptr = &commit_list_insert(lookup_commit(head),
745 pptr)->next;
746 for (j = remoteheads; j; j = j->next)
747 pptr = &commit_list_insert(j->item, pptr)->next;
749 free_commit_list(remoteheads);
750 strbuf_addch(&merge_msg, '\n');
751 commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
752 strbuf_addf(&buf, "Merge made by %s.", wt_strategy);
753 finish(result_commit, buf.buf);
754 strbuf_release(&buf);
755 drop_save();
756 return 0;
759 static int suggest_conflicts(void)
761 FILE *fp;
762 int pos;
764 fp = fopen(git_path("MERGE_MSG"), "a");
765 if (!fp)
766 die_errno("Could not open '%s' for writing",
767 git_path("MERGE_MSG"));
768 fprintf(fp, "\nConflicts:\n");
769 for (pos = 0; pos < active_nr; pos++) {
770 struct cache_entry *ce = active_cache[pos];
772 if (ce_stage(ce)) {
773 fprintf(fp, "\t%s\n", ce->name);
774 while (pos + 1 < active_nr &&
775 !strcmp(ce->name,
776 active_cache[pos + 1]->name))
777 pos++;
780 fclose(fp);
781 rerere();
782 printf("Automatic merge failed; "
783 "fix conflicts and then commit the result.\n");
784 return 1;
787 static struct commit *is_old_style_invocation(int argc, const char **argv)
789 struct commit *second_token = NULL;
790 if (argc > 1) {
791 unsigned char second_sha1[20];
793 if (get_sha1(argv[1], second_sha1))
794 return NULL;
795 second_token = lookup_commit_reference_gently(second_sha1, 0);
796 if (!second_token)
797 die("'%s' is not a commit", argv[1]);
798 if (hashcmp(second_token->object.sha1, head))
799 return NULL;
801 return second_token;
804 static int evaluate_result(void)
806 int cnt = 0;
807 struct rev_info rev;
809 /* Check how many files differ. */
810 init_revisions(&rev, "");
811 setup_revisions(0, NULL, &rev, NULL);
812 rev.diffopt.output_format |=
813 DIFF_FORMAT_CALLBACK;
814 rev.diffopt.format_callback = count_diff_files;
815 rev.diffopt.format_callback_data = &cnt;
816 run_diff_files(&rev, 0);
819 * Check how many unmerged entries are
820 * there.
822 cnt += count_unmerged_entries();
824 return cnt;
827 int cmd_merge(int argc, const char **argv, const char *prefix)
829 unsigned char result_tree[20];
830 struct strbuf buf = STRBUF_INIT;
831 const char *head_arg;
832 int flag, head_invalid = 0, i;
833 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
834 struct commit_list *common = NULL;
835 const char *best_strategy = NULL, *wt_strategy = NULL;
836 struct commit_list **remotes = &remoteheads;
838 setup_work_tree();
839 if (file_exists(git_path("MERGE_HEAD")))
840 die("You have not concluded your merge. (MERGE_HEAD exists)");
841 if (read_cache_unmerged())
842 die("You are in the middle of a conflicted merge."
843 " (index unmerged)");
846 * Check if we are _not_ on a detached HEAD, i.e. if there is a
847 * current branch.
849 branch = resolve_ref("HEAD", head, 0, &flag);
850 if (branch && !prefixcmp(branch, "refs/heads/"))
851 branch += 11;
852 if (is_null_sha1(head))
853 head_invalid = 1;
855 git_config(git_merge_config, NULL);
857 /* for color.ui */
858 if (diff_use_color_default == -1)
859 diff_use_color_default = git_use_color_default;
861 argc = parse_options(argc, argv, prefix, builtin_merge_options,
862 builtin_merge_usage, 0);
863 if (verbosity < 0)
864 show_diffstat = 0;
866 if (squash) {
867 if (!allow_fast_forward)
868 die("You cannot combine --squash with --no-ff.");
869 option_commit = 0;
872 if (!argc)
873 usage_with_options(builtin_merge_usage,
874 builtin_merge_options);
877 * This could be traditional "merge <msg> HEAD <commit>..." and
878 * the way we can tell it is to see if the second token is HEAD,
879 * but some people might have misused the interface and used a
880 * committish that is the same as HEAD there instead.
881 * Traditional format never would have "-m" so it is an
882 * additional safety measure to check for it.
885 if (!have_message && is_old_style_invocation(argc, argv)) {
886 strbuf_addstr(&merge_msg, argv[0]);
887 head_arg = argv[1];
888 argv += 2;
889 argc -= 2;
890 } else if (head_invalid) {
891 struct object *remote_head;
893 * If the merged head is a valid one there is no reason
894 * to forbid "git merge" into a branch yet to be born.
895 * We do the same for "git pull".
897 if (argc != 1)
898 die("Can merge only exactly one commit into "
899 "empty head");
900 if (squash)
901 die("Squash commit into empty head not supported yet");
902 if (!allow_fast_forward)
903 die("Non-fast-forward commit does not make sense into "
904 "an empty head");
905 remote_head = peel_to_type(argv[0], 0, NULL, OBJ_COMMIT);
906 if (!remote_head)
907 die("%s - not something we can merge", argv[0]);
908 update_ref("initial pull", "HEAD", remote_head->sha1, NULL, 0,
909 DIE_ON_ERR);
910 reset_hard(remote_head->sha1, 0);
911 return 0;
912 } else {
913 struct strbuf msg = STRBUF_INIT;
915 /* We are invoked directly as the first-class UI. */
916 head_arg = "HEAD";
919 * All the rest are the commits being merged;
920 * prepare the standard merge summary message to
921 * be appended to the given message. If remote
922 * is invalid we will die later in the common
923 * codepath so we discard the error in this
924 * loop.
926 for (i = 0; i < argc; i++)
927 merge_name(argv[i], &msg);
928 fmt_merge_msg(option_log, &msg, &merge_msg);
929 if (merge_msg.len)
930 strbuf_setlen(&merge_msg, merge_msg.len-1);
933 if (head_invalid || !argc)
934 usage_with_options(builtin_merge_usage,
935 builtin_merge_options);
937 strbuf_addstr(&buf, "merge");
938 for (i = 0; i < argc; i++)
939 strbuf_addf(&buf, " %s", argv[i]);
940 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
941 strbuf_reset(&buf);
943 for (i = 0; i < argc; i++) {
944 struct object *o;
945 struct commit *commit;
947 o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
948 if (!o)
949 die("%s - not something we can merge", argv[i]);
950 commit = lookup_commit(o->sha1);
951 commit->util = (void *)argv[i];
952 remotes = &commit_list_insert(commit, remotes)->next;
954 strbuf_addf(&buf, "GITHEAD_%s", sha1_to_hex(o->sha1));
955 setenv(buf.buf, argv[i], 1);
956 strbuf_reset(&buf);
959 if (!use_strategies) {
960 if (!remoteheads->next)
961 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
962 else
963 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
966 for (i = 0; i < use_strategies_nr; i++) {
967 if (use_strategies[i]->attr & NO_FAST_FORWARD)
968 allow_fast_forward = 0;
969 if (use_strategies[i]->attr & NO_TRIVIAL)
970 allow_trivial = 0;
973 if (!remoteheads->next)
974 common = get_merge_bases(lookup_commit(head),
975 remoteheads->item, 1);
976 else {
977 struct commit_list *list = remoteheads;
978 commit_list_insert(lookup_commit(head), &list);
979 common = get_octopus_merge_bases(list);
980 free(list);
983 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head, NULL, 0,
984 DIE_ON_ERR);
986 if (!common)
987 ; /* No common ancestors found. We need a real merge. */
988 else if (!remoteheads->next && !common->next &&
989 common->item == remoteheads->item) {
991 * If head can reach all the merge then we are up to date.
992 * but first the most common case of merging one remote.
994 finish_up_to_date("Already up-to-date.");
995 return 0;
996 } else if (allow_fast_forward && !remoteheads->next &&
997 !common->next &&
998 !hashcmp(common->item->object.sha1, head)) {
999 /* Again the most common case of merging one remote. */
1000 struct strbuf msg = STRBUF_INIT;
1001 struct object *o;
1002 char hex[41];
1004 strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV));
1006 if (verbosity >= 0)
1007 printf("Updating %s..%s\n",
1008 hex,
1009 find_unique_abbrev(remoteheads->item->object.sha1,
1010 DEFAULT_ABBREV));
1011 strbuf_addstr(&msg, "Fast forward");
1012 if (have_message)
1013 strbuf_addstr(&msg,
1014 " (no commit created; -m option ignored)");
1015 o = peel_to_type(sha1_to_hex(remoteheads->item->object.sha1),
1016 0, NULL, OBJ_COMMIT);
1017 if (!o)
1018 return 1;
1020 if (checkout_fast_forward(head, remoteheads->item->object.sha1))
1021 return 1;
1023 finish(o->sha1, msg.buf);
1024 drop_save();
1025 return 0;
1026 } else if (!remoteheads->next && common->next)
1029 * We are not doing octopus and not fast forward. Need
1030 * a real merge.
1032 else if (!remoteheads->next && !common->next && option_commit) {
1034 * We are not doing octopus, not fast forward, and have
1035 * only one common.
1037 refresh_cache(REFRESH_QUIET);
1038 if (allow_trivial) {
1039 /* See if it is really trivial. */
1040 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1041 printf("Trying really trivial in-index merge...\n");
1042 if (!read_tree_trivial(common->item->object.sha1,
1043 head, remoteheads->item->object.sha1))
1044 return merge_trivial();
1045 printf("Nope.\n");
1047 } else {
1049 * An octopus. If we can reach all the remote we are up
1050 * to date.
1052 int up_to_date = 1;
1053 struct commit_list *j;
1055 for (j = remoteheads; j; j = j->next) {
1056 struct commit_list *common_one;
1059 * Here we *have* to calculate the individual
1060 * merge_bases again, otherwise "git merge HEAD^
1061 * HEAD^^" would be missed.
1063 common_one = get_merge_bases(lookup_commit(head),
1064 j->item, 1);
1065 if (hashcmp(common_one->item->object.sha1,
1066 j->item->object.sha1)) {
1067 up_to_date = 0;
1068 break;
1071 if (up_to_date) {
1072 finish_up_to_date("Already up-to-date. Yeeah!");
1073 return 0;
1077 /* We are going to make a new commit. */
1078 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1081 * At this point, we need a real merge. No matter what strategy
1082 * we use, it would operate on the index, possibly affecting the
1083 * working tree, and when resolved cleanly, have the desired
1084 * tree in the index -- this means that the index must be in
1085 * sync with the head commit. The strategies are responsible
1086 * to ensure this.
1088 if (use_strategies_nr != 1) {
1090 * Stash away the local changes so that we can try more
1091 * than one.
1093 save_state();
1094 } else {
1095 memcpy(stash, null_sha1, 20);
1098 for (i = 0; i < use_strategies_nr; i++) {
1099 int ret;
1100 if (i) {
1101 printf("Rewinding the tree to pristine...\n");
1102 restore_state();
1104 if (use_strategies_nr != 1)
1105 printf("Trying merge strategy %s...\n",
1106 use_strategies[i]->name);
1108 * Remember which strategy left the state in the working
1109 * tree.
1111 wt_strategy = use_strategies[i]->name;
1113 ret = try_merge_strategy(use_strategies[i]->name,
1114 common, head_arg);
1115 if (!option_commit && !ret) {
1116 merge_was_ok = 1;
1118 * This is necessary here just to avoid writing
1119 * the tree, but later we will *not* exit with
1120 * status code 1 because merge_was_ok is set.
1122 ret = 1;
1125 if (ret) {
1127 * The backend exits with 1 when conflicts are
1128 * left to be resolved, with 2 when it does not
1129 * handle the given merge at all.
1131 if (ret == 1) {
1132 int cnt = evaluate_result();
1134 if (best_cnt <= 0 || cnt <= best_cnt) {
1135 best_strategy = use_strategies[i]->name;
1136 best_cnt = cnt;
1139 if (merge_was_ok)
1140 break;
1141 else
1142 continue;
1145 /* Automerge succeeded. */
1146 write_tree_trivial(result_tree);
1147 automerge_was_ok = 1;
1148 break;
1152 * If we have a resulting tree, that means the strategy module
1153 * auto resolved the merge cleanly.
1155 if (automerge_was_ok)
1156 return finish_automerge(common, result_tree, wt_strategy);
1159 * Pick the result from the best strategy and have the user fix
1160 * it up.
1162 if (!best_strategy) {
1163 restore_state();
1164 if (use_strategies_nr > 1)
1165 fprintf(stderr,
1166 "No merge strategy handled the merge.\n");
1167 else
1168 fprintf(stderr, "Merge with strategy %s failed.\n",
1169 use_strategies[0]->name);
1170 return 2;
1171 } else if (best_strategy == wt_strategy)
1172 ; /* We already have its result in the working tree. */
1173 else {
1174 printf("Rewinding the tree to pristine...\n");
1175 restore_state();
1176 printf("Using the %s to prepare resolving by hand.\n",
1177 best_strategy);
1178 try_merge_strategy(best_strategy, common, head_arg);
1181 if (squash)
1182 finish(NULL, NULL);
1183 else {
1184 int fd;
1185 struct commit_list *j;
1187 for (j = remoteheads; j; j = j->next)
1188 strbuf_addf(&buf, "%s\n",
1189 sha1_to_hex(j->item->object.sha1));
1190 fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1191 if (fd < 0)
1192 die_errno("Could not open '%s' for writing",
1193 git_path("MERGE_HEAD"));
1194 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1195 die_errno("Could not write to '%s'", git_path("MERGE_HEAD"));
1196 close(fd);
1197 strbuf_addch(&merge_msg, '\n');
1198 fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
1199 if (fd < 0)
1200 die_errno("Could not open '%s' for writing",
1201 git_path("MERGE_MSG"));
1202 if (write_in_full(fd, merge_msg.buf, merge_msg.len) !=
1203 merge_msg.len)
1204 die_errno("Could not write to '%s'", git_path("MERGE_MSG"));
1205 close(fd);
1206 fd = open(git_path("MERGE_MODE"), O_WRONLY | O_CREAT | O_TRUNC, 0666);
1207 if (fd < 0)
1208 die_errno("Could not open '%s' for writing",
1209 git_path("MERGE_MODE"));
1210 strbuf_reset(&buf);
1211 if (!allow_fast_forward)
1212 strbuf_addf(&buf, "no-ff");
1213 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1214 die_errno("Could not write to '%s'", git_path("MERGE_MODE"));
1215 close(fd);
1218 if (merge_was_ok) {
1219 fprintf(stderr, "Automatic merge went well; "
1220 "stopped before committing as requested\n");
1221 return 0;
1222 } else
1223 return suggest_conflicts();