builtin-merge: release the lockfile in try_merge_strategy()
[git/dscho.git] / builtin-merge.c
blobbb09e6fb34f8552b959fa5dca5258ec69bc48c12
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;
54 static struct strategy all_strategy[] = {
55 { "recursive", DEFAULT_TWOHEAD | NO_TRIVIAL },
56 { "octopus", DEFAULT_OCTOPUS },
57 { "resolve", 0 },
58 { "ours", NO_FAST_FORWARD | NO_TRIVIAL },
59 { "subtree", NO_FAST_FORWARD | NO_TRIVIAL },
62 static const char *pull_twohead, *pull_octopus;
64 static int option_parse_message(const struct option *opt,
65 const char *arg, int unset)
67 struct strbuf *buf = opt->value;
69 if (unset)
70 strbuf_setlen(buf, 0);
71 else if (arg) {
72 strbuf_addf(buf, "%s\n\n", arg);
73 have_message = 1;
74 } else
75 return error("switch `m' requires a value");
76 return 0;
79 static struct strategy *get_strategy(const char *name)
81 int i;
82 struct strategy *ret;
83 static struct cmdnames main_cmds, other_cmds;
84 static int loaded;
86 if (!name)
87 return NULL;
89 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
90 if (!strcmp(name, all_strategy[i].name))
91 return &all_strategy[i];
93 if (!loaded) {
94 struct cmdnames not_strategies;
95 loaded = 1;
97 memset(&not_strategies, 0, sizeof(struct cmdnames));
98 load_command_list("git-merge-", &main_cmds, &other_cmds);
99 for (i = 0; i < main_cmds.cnt; i++) {
100 int j, found = 0;
101 struct cmdname *ent = main_cmds.names[i];
102 for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
103 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
104 && !all_strategy[j].name[ent->len])
105 found = 1;
106 if (!found)
107 add_cmdname(&not_strategies, ent->name, ent->len);
108 exclude_cmds(&main_cmds, &not_strategies);
111 if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
112 fprintf(stderr, "Could not find merge strategy '%s'.\n", name);
113 fprintf(stderr, "Available strategies are:");
114 for (i = 0; i < main_cmds.cnt; i++)
115 fprintf(stderr, " %s", main_cmds.names[i]->name);
116 fprintf(stderr, ".\n");
117 if (other_cmds.cnt) {
118 fprintf(stderr, "Available custom strategies are:");
119 for (i = 0; i < other_cmds.cnt; i++)
120 fprintf(stderr, " %s", other_cmds.names[i]->name);
121 fprintf(stderr, ".\n");
123 exit(1);
126 ret = xmalloc(sizeof(struct strategy));
127 memset(ret, 0, 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_END()
178 /* Cleans up metadata that is uninteresting after a succeeded merge. */
179 static void drop_save(void)
181 unlink(git_path("MERGE_HEAD"));
182 unlink(git_path("MERGE_MSG"));
185 static void save_state(void)
187 int len;
188 struct child_process cp;
189 struct strbuf buffer = STRBUF_INIT;
190 const char *argv[] = {"stash", "create", NULL};
192 memset(&cp, 0, sizeof(cp));
193 cp.argv = argv;
194 cp.out = -1;
195 cp.git_cmd = 1;
197 if (start_command(&cp))
198 die("could not run stash.");
199 len = strbuf_read(&buffer, cp.out, 1024);
200 close(cp.out);
202 if (finish_command(&cp) || len < 0)
203 die("stash failed");
204 else if (!len)
205 return;
206 strbuf_setlen(&buffer, buffer.len-1);
207 if (get_sha1(buffer.buf, stash))
208 die("not a valid object: %s", buffer.buf);
211 static void reset_hard(unsigned const char *sha1, int verbose)
213 int i = 0;
214 const char *args[6];
216 args[i++] = "read-tree";
217 if (verbose)
218 args[i++] = "-v";
219 args[i++] = "--reset";
220 args[i++] = "-u";
221 args[i++] = sha1_to_hex(sha1);
222 args[i] = NULL;
224 if (run_command_v_opt(args, RUN_GIT_CMD))
225 die("read-tree failed");
228 static void restore_state(void)
230 struct strbuf sb;
231 const char *args[] = { "stash", "apply", NULL, NULL };
233 if (is_null_sha1(stash))
234 return;
236 reset_hard(head, 1);
238 strbuf_init(&sb, 0);
239 args[2] = sha1_to_hex(stash);
242 * It is OK to ignore error here, for example when there was
243 * nothing to restore.
245 run_command_v_opt(args, RUN_GIT_CMD);
247 strbuf_release(&sb);
248 refresh_cache(REFRESH_QUIET);
251 /* This is called when no merge was necessary. */
252 static void finish_up_to_date(const char *msg)
254 printf("%s%s\n", squash ? " (nothing to squash)" : "", msg);
255 drop_save();
258 static void squash_message(void)
260 struct rev_info rev;
261 struct commit *commit;
262 struct strbuf out;
263 struct commit_list *j;
264 int fd;
266 printf("Squash commit -- not updating HEAD\n");
267 fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
268 if (fd < 0)
269 die("Could not write to %s", git_path("SQUASH_MSG"));
271 init_revisions(&rev, NULL);
272 rev.ignore_merges = 1;
273 rev.commit_format = CMIT_FMT_MEDIUM;
275 commit = lookup_commit(head);
276 commit->object.flags |= UNINTERESTING;
277 add_pending_object(&rev, &commit->object, NULL);
279 for (j = remoteheads; j; j = j->next)
280 add_pending_object(&rev, &j->item->object, NULL);
282 setup_revisions(0, NULL, &rev, NULL);
283 if (prepare_revision_walk(&rev))
284 die("revision walk setup failed");
286 strbuf_init(&out, 0);
287 strbuf_addstr(&out, "Squashed commit of the following:\n");
288 while ((commit = get_revision(&rev)) != NULL) {
289 strbuf_addch(&out, '\n');
290 strbuf_addf(&out, "commit %s\n",
291 sha1_to_hex(commit->object.sha1));
292 pretty_print_commit(rev.commit_format, commit, &out, rev.abbrev,
293 NULL, NULL, rev.date_mode, 0);
295 write(fd, out.buf, out.len);
296 close(fd);
297 strbuf_release(&out);
300 static int run_hook(const char *name)
302 struct child_process hook;
303 const char *argv[3], *env[2];
304 char index[PATH_MAX];
306 argv[0] = git_path("hooks/%s", name);
307 if (access(argv[0], X_OK) < 0)
308 return 0;
310 snprintf(index, sizeof(index), "GIT_INDEX_FILE=%s", get_index_file());
311 env[0] = index;
312 env[1] = NULL;
314 if (squash)
315 argv[1] = "1";
316 else
317 argv[1] = "0";
318 argv[2] = NULL;
320 memset(&hook, 0, sizeof(hook));
321 hook.argv = argv;
322 hook.no_stdin = 1;
323 hook.stdout_to_stderr = 1;
324 hook.env = env;
326 return run_command(&hook);
329 static void finish(const unsigned char *new_head, const char *msg)
331 struct strbuf reflog_message;
333 strbuf_init(&reflog_message, 0);
334 if (!msg)
335 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
336 else {
337 printf("%s\n", msg);
338 strbuf_addf(&reflog_message, "%s: %s",
339 getenv("GIT_REFLOG_ACTION"), msg);
341 if (squash) {
342 squash_message();
343 } else {
344 if (!merge_msg.len)
345 printf("No merge message -- not updating HEAD\n");
346 else {
347 const char *argv_gc_auto[] = { "gc", "--auto", NULL };
348 update_ref(reflog_message.buf, "HEAD",
349 new_head, head, 0,
350 DIE_ON_ERR);
352 * We ignore errors in 'gc --auto', since the
353 * user should see them.
355 run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
358 if (new_head && show_diffstat) {
359 struct diff_options opts;
360 diff_setup(&opts);
361 opts.output_format |=
362 DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
363 opts.detect_rename = DIFF_DETECT_RENAME;
364 if (diff_use_color_default > 0)
365 DIFF_OPT_SET(&opts, COLOR_DIFF);
366 if (diff_setup_done(&opts) < 0)
367 die("diff_setup_done failed");
368 diff_tree_sha1(head, new_head, "", &opts);
369 diffcore_std(&opts);
370 diff_flush(&opts);
373 /* Run a post-merge hook */
374 run_hook("post-merge");
376 strbuf_release(&reflog_message);
379 /* Get the name for the merge commit's message. */
380 static void merge_name(const char *remote, struct strbuf *msg)
382 struct object *remote_head;
383 unsigned char branch_head[20], buf_sha[20];
384 struct strbuf buf;
385 const char *ptr;
386 int len, early;
388 memset(branch_head, 0, sizeof(branch_head));
389 remote_head = peel_to_type(remote, 0, NULL, OBJ_COMMIT);
390 if (!remote_head)
391 die("'%s' does not point to a commit", remote);
393 strbuf_init(&buf, 0);
394 strbuf_addstr(&buf, "refs/heads/");
395 strbuf_addstr(&buf, remote);
396 resolve_ref(buf.buf, branch_head, 0, 0);
398 if (!hashcmp(remote_head->sha1, branch_head)) {
399 strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
400 sha1_to_hex(branch_head), remote);
401 return;
404 /* See if remote matches <name>^^^.. or <name>~<number> */
405 for (len = 0, ptr = remote + strlen(remote);
406 remote < ptr && ptr[-1] == '^';
407 ptr--)
408 len++;
409 if (len)
410 early = 1;
411 else {
412 early = 0;
413 ptr = strrchr(remote, '~');
414 if (ptr) {
415 int seen_nonzero = 0;
417 len++; /* count ~ */
418 while (*++ptr && isdigit(*ptr)) {
419 seen_nonzero |= (*ptr != '0');
420 len++;
422 if (*ptr)
423 len = 0; /* not ...~<number> */
424 else if (seen_nonzero)
425 early = 1;
426 else if (len == 1)
427 early = 1; /* "name~" is "name~1"! */
430 if (len) {
431 struct strbuf truname = STRBUF_INIT;
432 strbuf_addstr(&truname, "refs/heads/");
433 strbuf_addstr(&truname, remote);
434 strbuf_setlen(&truname, truname.len - len);
435 if (resolve_ref(truname.buf, buf_sha, 0, 0)) {
436 strbuf_addf(msg,
437 "%s\t\tbranch '%s'%s of .\n",
438 sha1_to_hex(remote_head->sha1),
439 truname.buf + 11,
440 (early ? " (early part)" : ""));
441 return;
445 if (!strcmp(remote, "FETCH_HEAD") &&
446 !access(git_path("FETCH_HEAD"), R_OK)) {
447 FILE *fp;
448 struct strbuf line;
449 char *ptr;
451 strbuf_init(&line, 0);
452 fp = fopen(git_path("FETCH_HEAD"), "r");
453 if (!fp)
454 die("could not open %s for reading: %s",
455 git_path("FETCH_HEAD"), strerror(errno));
456 strbuf_getline(&line, fp, '\n');
457 fclose(fp);
458 ptr = strstr(line.buf, "\tnot-for-merge\t");
459 if (ptr)
460 strbuf_remove(&line, ptr-line.buf+1, 13);
461 strbuf_addbuf(msg, &line);
462 strbuf_release(&line);
463 return;
465 strbuf_addf(msg, "%s\t\tcommit '%s'\n",
466 sha1_to_hex(remote_head->sha1), remote);
469 static int git_merge_config(const char *k, const char *v, void *cb)
471 if (branch && !prefixcmp(k, "branch.") &&
472 !prefixcmp(k + 7, branch) &&
473 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
474 const char **argv;
475 int argc;
476 char *buf;
478 buf = xstrdup(v);
479 argc = split_cmdline(buf, &argv);
480 argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
481 memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
482 argc++;
483 parse_options(argc, argv, builtin_merge_options,
484 builtin_merge_usage, 0);
485 free(buf);
488 if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
489 show_diffstat = git_config_bool(k, v);
490 else if (!strcmp(k, "pull.twohead"))
491 return git_config_string(&pull_twohead, k, v);
492 else if (!strcmp(k, "pull.octopus"))
493 return git_config_string(&pull_octopus, k, v);
494 else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary"))
495 option_log = git_config_bool(k, v);
496 return git_diff_ui_config(k, v, cb);
499 static int read_tree_trivial(unsigned char *common, unsigned char *head,
500 unsigned char *one)
502 int i, nr_trees = 0;
503 struct tree *trees[MAX_UNPACK_TREES];
504 struct tree_desc t[MAX_UNPACK_TREES];
505 struct unpack_trees_options opts;
507 memset(&opts, 0, sizeof(opts));
508 opts.head_idx = 2;
509 opts.src_index = &the_index;
510 opts.dst_index = &the_index;
511 opts.update = 1;
512 opts.verbose_update = 1;
513 opts.trivial_merges_only = 1;
514 opts.merge = 1;
515 trees[nr_trees] = parse_tree_indirect(common);
516 if (!trees[nr_trees++])
517 return -1;
518 trees[nr_trees] = parse_tree_indirect(head);
519 if (!trees[nr_trees++])
520 return -1;
521 trees[nr_trees] = parse_tree_indirect(one);
522 if (!trees[nr_trees++])
523 return -1;
524 opts.fn = threeway_merge;
525 cache_tree_free(&active_cache_tree);
526 for (i = 0; i < nr_trees; i++) {
527 parse_tree(trees[i]);
528 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
530 if (unpack_trees(nr_trees, t, &opts))
531 return -1;
532 return 0;
535 static void write_tree_trivial(unsigned char *sha1)
537 if (write_cache_as_tree(sha1, 0, NULL))
538 die("git write-tree failed to write a tree");
541 static int try_merge_strategy(const char *strategy, struct commit_list *common,
542 const char *head_arg)
544 const char **args;
545 int i = 0, ret;
546 struct commit_list *j;
547 struct strbuf buf;
549 if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
550 int clean;
551 struct commit *result;
552 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
553 int index_fd;
554 struct commit_list *reversed = NULL;
555 struct merge_options o;
557 if (remoteheads->next) {
558 error("Not handling anything other than two heads merge.");
559 return 2;
562 init_merge_options(&o);
563 if (!strcmp(strategy, "subtree"))
564 o.subtree_merge = 1;
566 o.branch1 = head_arg;
567 o.branch2 = remoteheads->item->util;
569 for (j = common; j; j = j->next)
570 commit_list_insert(j->item, &reversed);
572 index_fd = hold_locked_index(lock, 1);
573 clean = merge_recursive(&o, lookup_commit(head),
574 remoteheads->item, reversed, &result);
575 if (active_cache_changed &&
576 (write_cache(index_fd, active_cache, active_nr) ||
577 commit_locked_index(lock)))
578 die ("unable to write %s", get_index_file());
579 rollback_lock_file(lock);
580 return clean ? 0 : 1;
581 } else {
582 args = xmalloc((4 + commit_list_count(common) +
583 commit_list_count(remoteheads)) * sizeof(char *));
584 strbuf_init(&buf, 0);
585 strbuf_addf(&buf, "merge-%s", strategy);
586 args[i++] = buf.buf;
587 for (j = common; j; j = j->next)
588 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
589 args[i++] = "--";
590 args[i++] = head_arg;
591 for (j = remoteheads; j; j = j->next)
592 args[i++] = xstrdup(sha1_to_hex(j->item->object.sha1));
593 args[i] = NULL;
594 ret = run_command_v_opt(args, RUN_GIT_CMD);
595 strbuf_release(&buf);
596 i = 1;
597 for (j = common; j; j = j->next)
598 free((void *)args[i++]);
599 i += 2;
600 for (j = remoteheads; j; j = j->next)
601 free((void *)args[i++]);
602 free(args);
603 discard_cache();
604 if (read_cache() < 0)
605 die("failed to read the cache");
606 return -ret;
610 static void count_diff_files(struct diff_queue_struct *q,
611 struct diff_options *opt, void *data)
613 int *count = data;
615 (*count) += q->nr;
618 static int count_unmerged_entries(void)
620 const struct index_state *state = &the_index;
621 int i, ret = 0;
623 for (i = 0; i < state->cache_nr; i++)
624 if (ce_stage(state->cache[i]))
625 ret++;
627 return ret;
630 static int checkout_fast_forward(unsigned char *head, unsigned char *remote)
632 struct tree *trees[MAX_UNPACK_TREES];
633 struct unpack_trees_options opts;
634 struct tree_desc t[MAX_UNPACK_TREES];
635 int i, fd, nr_trees = 0;
636 struct dir_struct dir;
637 struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
639 refresh_cache(REFRESH_QUIET);
641 fd = hold_locked_index(lock_file, 1);
643 memset(&trees, 0, sizeof(trees));
644 memset(&opts, 0, sizeof(opts));
645 memset(&t, 0, sizeof(t));
646 memset(&dir, 0, sizeof(dir));
647 dir.show_ignored = 1;
648 dir.exclude_per_dir = ".gitignore";
649 opts.dir = &dir;
651 opts.head_idx = 1;
652 opts.src_index = &the_index;
653 opts.dst_index = &the_index;
654 opts.update = 1;
655 opts.verbose_update = 1;
656 opts.merge = 1;
657 opts.fn = twoway_merge;
659 trees[nr_trees] = parse_tree_indirect(head);
660 if (!trees[nr_trees++])
661 return -1;
662 trees[nr_trees] = parse_tree_indirect(remote);
663 if (!trees[nr_trees++])
664 return -1;
665 for (i = 0; i < nr_trees; i++) {
666 parse_tree(trees[i]);
667 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
669 if (unpack_trees(nr_trees, t, &opts))
670 return -1;
671 if (write_cache(fd, active_cache, active_nr) ||
672 commit_locked_index(lock_file))
673 die("unable to write new index file");
674 return 0;
677 static void split_merge_strategies(const char *string, struct strategy **list,
678 int *nr, int *alloc)
680 char *p, *q, *buf;
682 if (!string)
683 return;
685 buf = xstrdup(string);
686 q = buf;
687 for (;;) {
688 p = strchr(q, ' ');
689 if (!p) {
690 ALLOC_GROW(*list, *nr + 1, *alloc);
691 (*list)[(*nr)++].name = xstrdup(q);
692 free(buf);
693 return;
694 } else {
695 *p = '\0';
696 ALLOC_GROW(*list, *nr + 1, *alloc);
697 (*list)[(*nr)++].name = xstrdup(q);
698 q = ++p;
703 static void add_strategies(const char *string, unsigned attr)
705 struct strategy *list = NULL;
706 int list_alloc = 0, list_nr = 0, i;
708 memset(&list, 0, sizeof(list));
709 split_merge_strategies(string, &list, &list_nr, &list_alloc);
710 if (list) {
711 for (i = 0; i < list_nr; i++)
712 append_strategy(get_strategy(list[i].name));
713 return;
715 for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
716 if (all_strategy[i].attr & attr)
717 append_strategy(&all_strategy[i]);
721 static int merge_trivial(void)
723 unsigned char result_tree[20], result_commit[20];
724 struct commit_list *parent = xmalloc(sizeof(struct commit_list *));
726 write_tree_trivial(result_tree);
727 printf("Wonderful.\n");
728 parent->item = lookup_commit(head);
729 parent->next = xmalloc(sizeof(struct commit_list *));
730 parent->next->item = remoteheads->item;
731 parent->next->next = NULL;
732 commit_tree(merge_msg.buf, result_tree, parent, result_commit);
733 finish(result_commit, "In-index merge");
734 drop_save();
735 return 0;
738 static int finish_automerge(struct commit_list *common,
739 unsigned char *result_tree,
740 const char *wt_strategy)
742 struct commit_list *parents = NULL, *j;
743 struct strbuf buf = STRBUF_INIT;
744 unsigned char result_commit[20];
746 free_commit_list(common);
747 if (allow_fast_forward) {
748 parents = remoteheads;
749 commit_list_insert(lookup_commit(head), &parents);
750 parents = reduce_heads(parents);
751 } else {
752 struct commit_list **pptr = &parents;
754 pptr = &commit_list_insert(lookup_commit(head),
755 pptr)->next;
756 for (j = remoteheads; j; j = j->next)
757 pptr = &commit_list_insert(j->item, pptr)->next;
759 free_commit_list(remoteheads);
760 strbuf_addch(&merge_msg, '\n');
761 commit_tree(merge_msg.buf, result_tree, parents, result_commit);
762 strbuf_addf(&buf, "Merge made by %s.", wt_strategy);
763 finish(result_commit, buf.buf);
764 strbuf_release(&buf);
765 drop_save();
766 return 0;
769 static int suggest_conflicts(void)
771 FILE *fp;
772 int pos;
774 fp = fopen(git_path("MERGE_MSG"), "a");
775 if (!fp)
776 die("Could open %s for writing", git_path("MERGE_MSG"));
777 fprintf(fp, "\nConflicts:\n");
778 for (pos = 0; pos < active_nr; pos++) {
779 struct cache_entry *ce = active_cache[pos];
781 if (ce_stage(ce)) {
782 fprintf(fp, "\t%s\n", ce->name);
783 while (pos + 1 < active_nr &&
784 !strcmp(ce->name,
785 active_cache[pos + 1]->name))
786 pos++;
789 fclose(fp);
790 rerere();
791 printf("Automatic merge failed; "
792 "fix conflicts and then commit the result.\n");
793 return 1;
796 static struct commit *is_old_style_invocation(int argc, const char **argv)
798 struct commit *second_token = NULL;
799 if (argc > 1) {
800 unsigned char second_sha1[20];
802 if (get_sha1(argv[1], second_sha1))
803 return NULL;
804 second_token = lookup_commit_reference_gently(second_sha1, 0);
805 if (!second_token)
806 die("'%s' is not a commit", argv[1]);
807 if (hashcmp(second_token->object.sha1, head))
808 return NULL;
810 return second_token;
813 static int evaluate_result(void)
815 int cnt = 0;
816 struct rev_info rev;
818 /* Check how many files differ. */
819 init_revisions(&rev, "");
820 setup_revisions(0, NULL, &rev, NULL);
821 rev.diffopt.output_format |=
822 DIFF_FORMAT_CALLBACK;
823 rev.diffopt.format_callback = count_diff_files;
824 rev.diffopt.format_callback_data = &cnt;
825 run_diff_files(&rev, 0);
828 * Check how many unmerged entries are
829 * there.
831 cnt += count_unmerged_entries();
833 return cnt;
836 int cmd_merge(int argc, const char **argv, const char *prefix)
838 unsigned char result_tree[20];
839 struct strbuf buf;
840 const char *head_arg;
841 int flag, head_invalid = 0, i;
842 int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
843 struct commit_list *common = NULL;
844 const char *best_strategy = NULL, *wt_strategy = NULL;
845 struct commit_list **remotes = &remoteheads;
847 setup_work_tree();
848 if (read_cache_unmerged())
849 die("You are in the middle of a conflicted merge.");
852 * Check if we are _not_ on a detached HEAD, i.e. if there is a
853 * current branch.
855 branch = resolve_ref("HEAD", head, 0, &flag);
856 if (branch && !prefixcmp(branch, "refs/heads/"))
857 branch += 11;
858 if (is_null_sha1(head))
859 head_invalid = 1;
861 git_config(git_merge_config, NULL);
863 /* for color.ui */
864 if (diff_use_color_default == -1)
865 diff_use_color_default = git_use_color_default;
867 argc = parse_options(argc, argv, builtin_merge_options,
868 builtin_merge_usage, 0);
870 if (squash) {
871 if (!allow_fast_forward)
872 die("You cannot combine --squash with --no-ff.");
873 option_commit = 0;
876 if (!argc)
877 usage_with_options(builtin_merge_usage,
878 builtin_merge_options);
881 * This could be traditional "merge <msg> HEAD <commit>..." and
882 * the way we can tell it is to see if the second token is HEAD,
883 * but some people might have misused the interface and used a
884 * committish that is the same as HEAD there instead.
885 * Traditional format never would have "-m" so it is an
886 * additional safety measure to check for it.
888 strbuf_init(&buf, 0);
890 if (!have_message && is_old_style_invocation(argc, argv)) {
891 strbuf_addstr(&merge_msg, argv[0]);
892 head_arg = argv[1];
893 argv += 2;
894 argc -= 2;
895 } else if (head_invalid) {
896 struct object *remote_head;
898 * If the merged head is a valid one there is no reason
899 * to forbid "git merge" into a branch yet to be born.
900 * We do the same for "git pull".
902 if (argc != 1)
903 die("Can merge only exactly one commit into "
904 "empty head");
905 if (squash)
906 die("Squash commit into empty head not supported yet");
907 if (!allow_fast_forward)
908 die("Non-fast-forward commit does not make sense into "
909 "an empty head");
910 remote_head = peel_to_type(argv[0], 0, NULL, OBJ_COMMIT);
911 if (!remote_head)
912 die("%s - not something we can merge", argv[0]);
913 update_ref("initial pull", "HEAD", remote_head->sha1, NULL, 0,
914 DIE_ON_ERR);
915 reset_hard(remote_head->sha1, 0);
916 return 0;
917 } else {
918 struct strbuf msg;
920 /* We are invoked directly as the first-class UI. */
921 head_arg = "HEAD";
924 * All the rest are the commits being merged;
925 * prepare the standard merge summary message to
926 * be appended to the given message. If remote
927 * is invalid we will die later in the common
928 * codepath so we discard the error in this
929 * loop.
931 strbuf_init(&msg, 0);
932 for (i = 0; i < argc; i++)
933 merge_name(argv[i], &msg);
934 fmt_merge_msg(option_log, &msg, &merge_msg);
935 if (merge_msg.len)
936 strbuf_setlen(&merge_msg, merge_msg.len-1);
939 if (head_invalid || !argc)
940 usage_with_options(builtin_merge_usage,
941 builtin_merge_options);
943 strbuf_addstr(&buf, "merge");
944 for (i = 0; i < argc; i++)
945 strbuf_addf(&buf, " %s", argv[i]);
946 setenv("GIT_REFLOG_ACTION", buf.buf, 0);
947 strbuf_reset(&buf);
949 for (i = 0; i < argc; i++) {
950 struct object *o;
951 struct commit *commit;
953 o = peel_to_type(argv[i], 0, NULL, OBJ_COMMIT);
954 if (!o)
955 die("%s - not something we can merge", argv[i]);
956 commit = lookup_commit(o->sha1);
957 commit->util = (void *)argv[i];
958 remotes = &commit_list_insert(commit, remotes)->next;
960 strbuf_addf(&buf, "GITHEAD_%s", sha1_to_hex(o->sha1));
961 setenv(buf.buf, argv[i], 1);
962 strbuf_reset(&buf);
965 if (!use_strategies) {
966 if (!remoteheads->next)
967 add_strategies(pull_twohead, DEFAULT_TWOHEAD);
968 else
969 add_strategies(pull_octopus, DEFAULT_OCTOPUS);
972 for (i = 0; i < use_strategies_nr; i++) {
973 if (use_strategies[i]->attr & NO_FAST_FORWARD)
974 allow_fast_forward = 0;
975 if (use_strategies[i]->attr & NO_TRIVIAL)
976 allow_trivial = 0;
979 if (!remoteheads->next)
980 common = get_merge_bases(lookup_commit(head),
981 remoteheads->item, 1);
982 else {
983 struct commit_list *list = remoteheads;
984 commit_list_insert(lookup_commit(head), &list);
985 common = get_octopus_merge_bases(list);
986 free(list);
989 update_ref("updating ORIG_HEAD", "ORIG_HEAD", head, NULL, 0,
990 DIE_ON_ERR);
992 if (!common)
993 ; /* No common ancestors found. We need a real merge. */
994 else if (!remoteheads->next && !common->next &&
995 common->item == remoteheads->item) {
997 * If head can reach all the merge then we are up to date.
998 * but first the most common case of merging one remote.
1000 finish_up_to_date("Already up-to-date.");
1001 return 0;
1002 } else if (allow_fast_forward && !remoteheads->next &&
1003 !common->next &&
1004 !hashcmp(common->item->object.sha1, head)) {
1005 /* Again the most common case of merging one remote. */
1006 struct strbuf msg;
1007 struct object *o;
1008 char hex[41];
1010 strcpy(hex, find_unique_abbrev(head, DEFAULT_ABBREV));
1012 printf("Updating %s..%s\n",
1013 hex,
1014 find_unique_abbrev(remoteheads->item->object.sha1,
1015 DEFAULT_ABBREV));
1016 strbuf_init(&msg, 0);
1017 strbuf_addstr(&msg, "Fast forward");
1018 if (have_message)
1019 strbuf_addstr(&msg,
1020 " (no commit created; -m option ignored)");
1021 o = peel_to_type(sha1_to_hex(remoteheads->item->object.sha1),
1022 0, NULL, OBJ_COMMIT);
1023 if (!o)
1024 return 1;
1026 if (checkout_fast_forward(head, remoteheads->item->object.sha1))
1027 return 1;
1029 finish(o->sha1, msg.buf);
1030 drop_save();
1031 return 0;
1032 } else if (!remoteheads->next && common->next)
1035 * We are not doing octopus and not fast forward. Need
1036 * a real merge.
1038 else if (!remoteheads->next && !common->next && option_commit) {
1040 * We are not doing octopus, not fast forward, and have
1041 * only one common.
1043 refresh_cache(REFRESH_QUIET);
1044 if (allow_trivial) {
1045 /* See if it is really trivial. */
1046 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1047 printf("Trying really trivial in-index merge...\n");
1048 if (!read_tree_trivial(common->item->object.sha1,
1049 head, remoteheads->item->object.sha1))
1050 return merge_trivial();
1051 printf("Nope.\n");
1053 } else {
1055 * An octopus. If we can reach all the remote we are up
1056 * to date.
1058 int up_to_date = 1;
1059 struct commit_list *j;
1061 for (j = remoteheads; j; j = j->next) {
1062 struct commit_list *common_one;
1065 * Here we *have* to calculate the individual
1066 * merge_bases again, otherwise "git merge HEAD^
1067 * HEAD^^" would be missed.
1069 common_one = get_merge_bases(lookup_commit(head),
1070 j->item, 1);
1071 if (hashcmp(common_one->item->object.sha1,
1072 j->item->object.sha1)) {
1073 up_to_date = 0;
1074 break;
1077 if (up_to_date) {
1078 finish_up_to_date("Already up-to-date. Yeeah!");
1079 return 0;
1083 /* We are going to make a new commit. */
1084 git_committer_info(IDENT_ERROR_ON_NO_NAME);
1087 * At this point, we need a real merge. No matter what strategy
1088 * we use, it would operate on the index, possibly affecting the
1089 * working tree, and when resolved cleanly, have the desired
1090 * tree in the index -- this means that the index must be in
1091 * sync with the head commit. The strategies are responsible
1092 * to ensure this.
1094 if (use_strategies_nr != 1) {
1096 * Stash away the local changes so that we can try more
1097 * than one.
1099 save_state();
1100 } else {
1101 memcpy(stash, null_sha1, 20);
1104 for (i = 0; i < use_strategies_nr; i++) {
1105 int ret;
1106 if (i) {
1107 printf("Rewinding the tree to pristine...\n");
1108 restore_state();
1110 if (use_strategies_nr != 1)
1111 printf("Trying merge strategy %s...\n",
1112 use_strategies[i]->name);
1114 * Remember which strategy left the state in the working
1115 * tree.
1117 wt_strategy = use_strategies[i]->name;
1119 ret = try_merge_strategy(use_strategies[i]->name,
1120 common, head_arg);
1121 if (!option_commit && !ret) {
1122 merge_was_ok = 1;
1124 * This is necessary here just to avoid writing
1125 * the tree, but later we will *not* exit with
1126 * status code 1 because merge_was_ok is set.
1128 ret = 1;
1131 if (ret) {
1133 * The backend exits with 1 when conflicts are
1134 * left to be resolved, with 2 when it does not
1135 * handle the given merge at all.
1137 if (ret == 1) {
1138 int cnt = evaluate_result();
1140 if (best_cnt <= 0 || cnt <= best_cnt) {
1141 best_strategy = use_strategies[i]->name;
1142 best_cnt = cnt;
1145 if (merge_was_ok)
1146 break;
1147 else
1148 continue;
1151 /* Automerge succeeded. */
1152 write_tree_trivial(result_tree);
1153 automerge_was_ok = 1;
1154 break;
1158 * If we have a resulting tree, that means the strategy module
1159 * auto resolved the merge cleanly.
1161 if (automerge_was_ok)
1162 return finish_automerge(common, result_tree, wt_strategy);
1165 * Pick the result from the best strategy and have the user fix
1166 * it up.
1168 if (!best_strategy) {
1169 restore_state();
1170 if (use_strategies_nr > 1)
1171 fprintf(stderr,
1172 "No merge strategy handled the merge.\n");
1173 else
1174 fprintf(stderr, "Merge with strategy %s failed.\n",
1175 use_strategies[0]->name);
1176 return 2;
1177 } else if (best_strategy == wt_strategy)
1178 ; /* We already have its result in the working tree. */
1179 else {
1180 printf("Rewinding the tree to pristine...\n");
1181 restore_state();
1182 printf("Using the %s to prepare resolving by hand.\n",
1183 best_strategy);
1184 try_merge_strategy(best_strategy, common, head_arg);
1187 if (squash)
1188 finish(NULL, NULL);
1189 else {
1190 int fd;
1191 struct commit_list *j;
1193 for (j = remoteheads; j; j = j->next)
1194 strbuf_addf(&buf, "%s\n",
1195 sha1_to_hex(j->item->object.sha1));
1196 fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1197 if (fd < 0)
1198 die("Could open %s for writing",
1199 git_path("MERGE_HEAD"));
1200 if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1201 die("Could not write to %s", git_path("MERGE_HEAD"));
1202 close(fd);
1203 strbuf_addch(&merge_msg, '\n');
1204 fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
1205 if (fd < 0)
1206 die("Could open %s for writing", git_path("MERGE_MSG"));
1207 if (write_in_full(fd, merge_msg.buf, merge_msg.len) !=
1208 merge_msg.len)
1209 die("Could not write to %s", git_path("MERGE_MSG"));
1210 close(fd);
1213 if (merge_was_ok) {
1214 fprintf(stderr, "Automatic merge went well; "
1215 "stopped before committing as requested\n");
1216 return 0;
1217 } else
1218 return suggest_conflicts();