merge: use editor by default in interactive sessions
[git] / builtin / merge.c
1 /*
2  * Builtin "git merge"
3  *
4  * Copyright (c) 2008 Miklos Vajna <vmiklos@frugalware.org>
5  *
6  * Based on git-merge.sh by Junio C Hamano.
7  */
8
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"
27 #include "resolve-undo.h"
28 #include "remote.h"
29
30 #define DEFAULT_TWOHEAD (1<<0)
31 #define DEFAULT_OCTOPUS (1<<1)
32 #define NO_FAST_FORWARD (1<<2)
33 #define NO_TRIVIAL      (1<<3)
34
35 struct strategy {
36         const char *name;
37         unsigned attr;
38 };
39
40 static const char * const builtin_merge_usage[] = {
41         "git merge [options] [<commit>...]",
42         "git merge [options] <msg> HEAD <commit>",
43         "git merge --abort",
44         NULL
45 };
46
47 static int show_diffstat = 1, shortlog_len, squash;
48 static int option_commit = 1, allow_fast_forward = 1;
49 static int fast_forward_only, option_edit = -1;
50 static int allow_trivial = 1, have_message;
51 static struct strbuf merge_msg;
52 static struct commit_list *remoteheads;
53 static struct strategy **use_strategies;
54 static size_t use_strategies_nr, use_strategies_alloc;
55 static const char **xopts;
56 static size_t xopts_nr, xopts_alloc;
57 static const char *branch;
58 static char *branch_mergeoptions;
59 static int option_renormalize;
60 static int verbosity;
61 static int allow_rerere_auto;
62 static int abort_current_merge;
63 static int show_progress = -1;
64 static int default_to_upstream;
65
66 static struct strategy all_strategy[] = {
67         { "recursive",  DEFAULT_TWOHEAD | NO_TRIVIAL },
68         { "octopus",    DEFAULT_OCTOPUS },
69         { "resolve",    0 },
70         { "ours",       NO_FAST_FORWARD | NO_TRIVIAL },
71         { "subtree",    NO_FAST_FORWARD | NO_TRIVIAL },
72 };
73
74 static const char *pull_twohead, *pull_octopus;
75
76 static int option_parse_message(const struct option *opt,
77                                 const char *arg, int unset)
78 {
79         struct strbuf *buf = opt->value;
80
81         if (unset)
82                 strbuf_setlen(buf, 0);
83         else if (arg) {
84                 strbuf_addf(buf, "%s%s", buf->len ? "\n\n" : "", arg);
85                 have_message = 1;
86         } else
87                 return error(_("switch `m' requires a value"));
88         return 0;
89 }
90
91 static struct strategy *get_strategy(const char *name)
92 {
93         int i;
94         struct strategy *ret;
95         static struct cmdnames main_cmds, other_cmds;
96         static int loaded;
97
98         if (!name)
99                 return NULL;
100
101         for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
102                 if (!strcmp(name, all_strategy[i].name))
103                         return &all_strategy[i];
104
105         if (!loaded) {
106                 struct cmdnames not_strategies;
107                 loaded = 1;
108
109                 memset(&not_strategies, 0, sizeof(struct cmdnames));
110                 load_command_list("git-merge-", &main_cmds, &other_cmds);
111                 for (i = 0; i < main_cmds.cnt; i++) {
112                         int j, found = 0;
113                         struct cmdname *ent = main_cmds.names[i];
114                         for (j = 0; j < ARRAY_SIZE(all_strategy); j++)
115                                 if (!strncmp(ent->name, all_strategy[j].name, ent->len)
116                                                 && !all_strategy[j].name[ent->len])
117                                         found = 1;
118                         if (!found)
119                                 add_cmdname(&not_strategies, ent->name, ent->len);
120                 }
121                 exclude_cmds(&main_cmds, &not_strategies);
122         }
123         if (!is_in_cmdlist(&main_cmds, name) && !is_in_cmdlist(&other_cmds, name)) {
124                 fprintf(stderr, _("Could not find merge strategy '%s'.\n"), name);
125                 fprintf(stderr, _("Available strategies are:"));
126                 for (i = 0; i < main_cmds.cnt; i++)
127                         fprintf(stderr, " %s", main_cmds.names[i]->name);
128                 fprintf(stderr, ".\n");
129                 if (other_cmds.cnt) {
130                         fprintf(stderr, _("Available custom strategies are:"));
131                         for (i = 0; i < other_cmds.cnt; i++)
132                                 fprintf(stderr, " %s", other_cmds.names[i]->name);
133                         fprintf(stderr, ".\n");
134                 }
135                 exit(1);
136         }
137
138         ret = xcalloc(1, sizeof(struct strategy));
139         ret->name = xstrdup(name);
140         ret->attr = NO_TRIVIAL;
141         return ret;
142 }
143
144 static void append_strategy(struct strategy *s)
145 {
146         ALLOC_GROW(use_strategies, use_strategies_nr + 1, use_strategies_alloc);
147         use_strategies[use_strategies_nr++] = s;
148 }
149
150 static int option_parse_strategy(const struct option *opt,
151                                  const char *name, int unset)
152 {
153         if (unset)
154                 return 0;
155
156         append_strategy(get_strategy(name));
157         return 0;
158 }
159
160 static int option_parse_x(const struct option *opt,
161                           const char *arg, int unset)
162 {
163         if (unset)
164                 return 0;
165
166         ALLOC_GROW(xopts, xopts_nr + 1, xopts_alloc);
167         xopts[xopts_nr++] = xstrdup(arg);
168         return 0;
169 }
170
171 static int option_parse_n(const struct option *opt,
172                           const char *arg, int unset)
173 {
174         show_diffstat = unset;
175         return 0;
176 }
177
178 static struct option builtin_merge_options[] = {
179         { OPTION_CALLBACK, 'n', NULL, NULL, NULL,
180                 "do not show a diffstat at the end of the merge",
181                 PARSE_OPT_NOARG, option_parse_n },
182         OPT_BOOLEAN(0, "stat", &show_diffstat,
183                 "show a diffstat at the end of the merge"),
184         OPT_BOOLEAN(0, "summary", &show_diffstat, "(synonym to --stat)"),
185         { OPTION_INTEGER, 0, "log", &shortlog_len, "n",
186           "add (at most <n>) entries from shortlog to merge commit message",
187           PARSE_OPT_OPTARG, NULL, DEFAULT_MERGE_LOG_LEN },
188         OPT_BOOLEAN(0, "squash", &squash,
189                 "create a single commit instead of doing a merge"),
190         OPT_BOOLEAN(0, "commit", &option_commit,
191                 "perform a commit if the merge succeeds (default)"),
192         OPT_BOOL('e', "edit", &option_edit,
193                 "edit message before committing"),
194         OPT_BOOLEAN(0, "ff", &allow_fast_forward,
195                 "allow fast-forward (default)"),
196         OPT_BOOLEAN(0, "ff-only", &fast_forward_only,
197                 "abort if fast-forward is not possible"),
198         OPT_RERERE_AUTOUPDATE(&allow_rerere_auto),
199         OPT_CALLBACK('s', "strategy", &use_strategies, "strategy",
200                 "merge strategy to use", option_parse_strategy),
201         OPT_CALLBACK('X', "strategy-option", &xopts, "option=value",
202                 "option for selected merge strategy", option_parse_x),
203         OPT_CALLBACK('m', "message", &merge_msg, "message",
204                 "merge commit message (for a non-fast-forward merge)",
205                 option_parse_message),
206         OPT__VERBOSITY(&verbosity),
207         OPT_BOOLEAN(0, "abort", &abort_current_merge,
208                 "abort the current in-progress merge"),
209         OPT_SET_INT(0, "progress", &show_progress, "force progress reporting", 1),
210         OPT_END()
211 };
212
213 /* Cleans up metadata that is uninteresting after a succeeded merge. */
214 static void drop_save(void)
215 {
216         unlink(git_path("MERGE_HEAD"));
217         unlink(git_path("MERGE_MSG"));
218         unlink(git_path("MERGE_MODE"));
219 }
220
221 static int save_state(unsigned char *stash)
222 {
223         int len;
224         struct child_process cp;
225         struct strbuf buffer = STRBUF_INIT;
226         const char *argv[] = {"stash", "create", NULL};
227
228         memset(&cp, 0, sizeof(cp));
229         cp.argv = argv;
230         cp.out = -1;
231         cp.git_cmd = 1;
232
233         if (start_command(&cp))
234                 die(_("could not run stash."));
235         len = strbuf_read(&buffer, cp.out, 1024);
236         close(cp.out);
237
238         if (finish_command(&cp) || len < 0)
239                 die(_("stash failed"));
240         else if (!len)          /* no changes */
241                 return -1;
242         strbuf_setlen(&buffer, buffer.len-1);
243         if (get_sha1(buffer.buf, stash))
244                 die(_("not a valid object: %s"), buffer.buf);
245         return 0;
246 }
247
248 static void read_empty(unsigned const char *sha1, int verbose)
249 {
250         int i = 0;
251         const char *args[7];
252
253         args[i++] = "read-tree";
254         if (verbose)
255                 args[i++] = "-v";
256         args[i++] = "-m";
257         args[i++] = "-u";
258         args[i++] = EMPTY_TREE_SHA1_HEX;
259         args[i++] = sha1_to_hex(sha1);
260         args[i] = NULL;
261
262         if (run_command_v_opt(args, RUN_GIT_CMD))
263                 die(_("read-tree failed"));
264 }
265
266 static void reset_hard(unsigned const char *sha1, int verbose)
267 {
268         int i = 0;
269         const char *args[6];
270
271         args[i++] = "read-tree";
272         if (verbose)
273                 args[i++] = "-v";
274         args[i++] = "--reset";
275         args[i++] = "-u";
276         args[i++] = sha1_to_hex(sha1);
277         args[i] = NULL;
278
279         if (run_command_v_opt(args, RUN_GIT_CMD))
280                 die(_("read-tree failed"));
281 }
282
283 static void restore_state(const unsigned char *head,
284                           const unsigned char *stash)
285 {
286         struct strbuf sb = STRBUF_INIT;
287         const char *args[] = { "stash", "apply", NULL, NULL };
288
289         if (is_null_sha1(stash))
290                 return;
291
292         reset_hard(head, 1);
293
294         args[2] = sha1_to_hex(stash);
295
296         /*
297          * It is OK to ignore error here, for example when there was
298          * nothing to restore.
299          */
300         run_command_v_opt(args, RUN_GIT_CMD);
301
302         strbuf_release(&sb);
303         refresh_cache(REFRESH_QUIET);
304 }
305
306 /* This is called when no merge was necessary. */
307 static void finish_up_to_date(const char *msg)
308 {
309         if (verbosity >= 0)
310                 printf("%s%s\n", squash ? _(" (nothing to squash)") : "", msg);
311         drop_save();
312 }
313
314 static void squash_message(struct commit *commit)
315 {
316         struct rev_info rev;
317         struct strbuf out = STRBUF_INIT;
318         struct commit_list *j;
319         int fd;
320         struct pretty_print_context ctx = {0};
321
322         printf(_("Squash commit -- not updating HEAD\n"));
323         fd = open(git_path("SQUASH_MSG"), O_WRONLY | O_CREAT, 0666);
324         if (fd < 0)
325                 die_errno(_("Could not write to '%s'"), git_path("SQUASH_MSG"));
326
327         init_revisions(&rev, NULL);
328         rev.ignore_merges = 1;
329         rev.commit_format = CMIT_FMT_MEDIUM;
330
331         commit->object.flags |= UNINTERESTING;
332         add_pending_object(&rev, &commit->object, NULL);
333
334         for (j = remoteheads; j; j = j->next)
335                 add_pending_object(&rev, &j->item->object, NULL);
336
337         setup_revisions(0, NULL, &rev, NULL);
338         if (prepare_revision_walk(&rev))
339                 die(_("revision walk setup failed"));
340
341         ctx.abbrev = rev.abbrev;
342         ctx.date_mode = rev.date_mode;
343         ctx.fmt = rev.commit_format;
344
345         strbuf_addstr(&out, "Squashed commit of the following:\n");
346         while ((commit = get_revision(&rev)) != NULL) {
347                 strbuf_addch(&out, '\n');
348                 strbuf_addf(&out, "commit %s\n",
349                         sha1_to_hex(commit->object.sha1));
350                 pretty_print_commit(&ctx, commit, &out);
351         }
352         if (write(fd, out.buf, out.len) < 0)
353                 die_errno(_("Writing SQUASH_MSG"));
354         if (close(fd))
355                 die_errno(_("Finishing SQUASH_MSG"));
356         strbuf_release(&out);
357 }
358
359 static void finish(struct commit *head_commit,
360                    const unsigned char *new_head, const char *msg)
361 {
362         struct strbuf reflog_message = STRBUF_INIT;
363         const unsigned char *head = head_commit->object.sha1;
364
365         if (!msg)
366                 strbuf_addstr(&reflog_message, getenv("GIT_REFLOG_ACTION"));
367         else {
368                 if (verbosity >= 0)
369                         printf("%s\n", msg);
370                 strbuf_addf(&reflog_message, "%s: %s",
371                         getenv("GIT_REFLOG_ACTION"), msg);
372         }
373         if (squash) {
374                 squash_message(head_commit);
375         } else {
376                 if (verbosity >= 0 && !merge_msg.len)
377                         printf(_("No merge message -- not updating HEAD\n"));
378                 else {
379                         const char *argv_gc_auto[] = { "gc", "--auto", NULL };
380                         update_ref(reflog_message.buf, "HEAD",
381                                 new_head, head, 0,
382                                 DIE_ON_ERR);
383                         /*
384                          * We ignore errors in 'gc --auto', since the
385                          * user should see them.
386                          */
387                         run_command_v_opt(argv_gc_auto, RUN_GIT_CMD);
388                 }
389         }
390         if (new_head && show_diffstat) {
391                 struct diff_options opts;
392                 diff_setup(&opts);
393                 opts.output_format |=
394                         DIFF_FORMAT_SUMMARY | DIFF_FORMAT_DIFFSTAT;
395                 opts.detect_rename = DIFF_DETECT_RENAME;
396                 if (diff_setup_done(&opts) < 0)
397                         die(_("diff_setup_done failed"));
398                 diff_tree_sha1(head, new_head, "", &opts);
399                 diffcore_std(&opts);
400                 diff_flush(&opts);
401         }
402
403         /* Run a post-merge hook */
404         run_hook(NULL, "post-merge", squash ? "1" : "0", NULL);
405
406         strbuf_release(&reflog_message);
407 }
408
409 /* Get the name for the merge commit's message. */
410 static void merge_name(const char *remote, struct strbuf *msg)
411 {
412         struct commit *remote_head;
413         unsigned char branch_head[20], buf_sha[20];
414         struct strbuf buf = STRBUF_INIT;
415         struct strbuf bname = STRBUF_INIT;
416         const char *ptr;
417         char *found_ref;
418         int len, early;
419
420         strbuf_branchname(&bname, remote);
421         remote = bname.buf;
422
423         memset(branch_head, 0, sizeof(branch_head));
424         remote_head = get_merge_parent(remote);
425         if (!remote_head)
426                 die(_("'%s' does not point to a commit"), remote);
427
428         if (dwim_ref(remote, strlen(remote), branch_head, &found_ref) > 0) {
429                 if (!prefixcmp(found_ref, "refs/heads/")) {
430                         strbuf_addf(msg, "%s\t\tbranch '%s' of .\n",
431                                     sha1_to_hex(branch_head), remote);
432                         goto cleanup;
433                 }
434                 if (!prefixcmp(found_ref, "refs/tags/")) {
435                         strbuf_addf(msg, "%s\t\ttag '%s' of .\n",
436                                     sha1_to_hex(branch_head), remote);
437                         goto cleanup;
438                 }
439                 if (!prefixcmp(found_ref, "refs/remotes/")) {
440                         strbuf_addf(msg, "%s\t\tremote-tracking branch '%s' of .\n",
441                                     sha1_to_hex(branch_head), remote);
442                         goto cleanup;
443                 }
444         }
445
446         /* See if remote matches <name>^^^.. or <name>~<number> */
447         for (len = 0, ptr = remote + strlen(remote);
448              remote < ptr && ptr[-1] == '^';
449              ptr--)
450                 len++;
451         if (len)
452                 early = 1;
453         else {
454                 early = 0;
455                 ptr = strrchr(remote, '~');
456                 if (ptr) {
457                         int seen_nonzero = 0;
458
459                         len++; /* count ~ */
460                         while (*++ptr && isdigit(*ptr)) {
461                                 seen_nonzero |= (*ptr != '0');
462                                 len++;
463                         }
464                         if (*ptr)
465                                 len = 0; /* not ...~<number> */
466                         else if (seen_nonzero)
467                                 early = 1;
468                         else if (len == 1)
469                                 early = 1; /* "name~" is "name~1"! */
470                 }
471         }
472         if (len) {
473                 struct strbuf truname = STRBUF_INIT;
474                 strbuf_addstr(&truname, "refs/heads/");
475                 strbuf_addstr(&truname, remote);
476                 strbuf_setlen(&truname, truname.len - len);
477                 if (resolve_ref(truname.buf, buf_sha, 1, NULL)) {
478                         strbuf_addf(msg,
479                                     "%s\t\tbranch '%s'%s of .\n",
480                                     sha1_to_hex(remote_head->object.sha1),
481                                     truname.buf + 11,
482                                     (early ? " (early part)" : ""));
483                         strbuf_release(&truname);
484                         goto cleanup;
485                 }
486         }
487
488         if (!strcmp(remote, "FETCH_HEAD") &&
489                         !access(git_path("FETCH_HEAD"), R_OK)) {
490                 FILE *fp;
491                 struct strbuf line = STRBUF_INIT;
492                 char *ptr;
493
494                 fp = fopen(git_path("FETCH_HEAD"), "r");
495                 if (!fp)
496                         die_errno(_("could not open '%s' for reading"),
497                                   git_path("FETCH_HEAD"));
498                 strbuf_getline(&line, fp, '\n');
499                 fclose(fp);
500                 ptr = strstr(line.buf, "\tnot-for-merge\t");
501                 if (ptr)
502                         strbuf_remove(&line, ptr-line.buf+1, 13);
503                 strbuf_addbuf(msg, &line);
504                 strbuf_release(&line);
505                 goto cleanup;
506         }
507         strbuf_addf(msg, "%s\t\tcommit '%s'\n",
508                 sha1_to_hex(remote_head->object.sha1), remote);
509 cleanup:
510         strbuf_release(&buf);
511         strbuf_release(&bname);
512 }
513
514 static void parse_branch_merge_options(char *bmo)
515 {
516         const char **argv;
517         int argc;
518
519         if (!bmo)
520                 return;
521         argc = split_cmdline(bmo, &argv);
522         if (argc < 0)
523                 die(_("Bad branch.%s.mergeoptions string: %s"), branch,
524                     split_cmdline_strerror(argc));
525         argv = xrealloc(argv, sizeof(*argv) * (argc + 2));
526         memmove(argv + 1, argv, sizeof(*argv) * (argc + 1));
527         argc++;
528         argv[0] = "branch.*.mergeoptions";
529         parse_options(argc, argv, NULL, builtin_merge_options,
530                       builtin_merge_usage, 0);
531         free(argv);
532 }
533
534 static int git_merge_config(const char *k, const char *v, void *cb)
535 {
536         if (branch && !prefixcmp(k, "branch.") &&
537                 !prefixcmp(k + 7, branch) &&
538                 !strcmp(k + 7 + strlen(branch), ".mergeoptions")) {
539                 free(branch_mergeoptions);
540                 branch_mergeoptions = xstrdup(v);
541                 return 0;
542         }
543
544         if (!strcmp(k, "merge.diffstat") || !strcmp(k, "merge.stat"))
545                 show_diffstat = git_config_bool(k, v);
546         else if (!strcmp(k, "pull.twohead"))
547                 return git_config_string(&pull_twohead, k, v);
548         else if (!strcmp(k, "pull.octopus"))
549                 return git_config_string(&pull_octopus, k, v);
550         else if (!strcmp(k, "merge.renormalize"))
551                 option_renormalize = git_config_bool(k, v);
552         else if (!strcmp(k, "merge.log") || !strcmp(k, "merge.summary")) {
553                 int is_bool;
554                 shortlog_len = git_config_bool_or_int(k, v, &is_bool);
555                 if (!is_bool && shortlog_len < 0)
556                         return error(_("%s: negative length %s"), k, v);
557                 if (is_bool && shortlog_len)
558                         shortlog_len = DEFAULT_MERGE_LOG_LEN;
559                 return 0;
560         } else if (!strcmp(k, "merge.ff")) {
561                 int boolval = git_config_maybe_bool(k, v);
562                 if (0 <= boolval) {
563                         allow_fast_forward = boolval;
564                 } else if (v && !strcmp(v, "only")) {
565                         allow_fast_forward = 1;
566                         fast_forward_only = 1;
567                 } /* do not barf on values from future versions of git */
568                 return 0;
569         } else if (!strcmp(k, "merge.defaulttoupstream")) {
570                 default_to_upstream = git_config_bool(k, v);
571                 return 0;
572         }
573         return git_diff_ui_config(k, v, cb);
574 }
575
576 static int read_tree_trivial(unsigned char *common, unsigned char *head,
577                              unsigned char *one)
578 {
579         int i, nr_trees = 0;
580         struct tree *trees[MAX_UNPACK_TREES];
581         struct tree_desc t[MAX_UNPACK_TREES];
582         struct unpack_trees_options opts;
583
584         memset(&opts, 0, sizeof(opts));
585         opts.head_idx = 2;
586         opts.src_index = &the_index;
587         opts.dst_index = &the_index;
588         opts.update = 1;
589         opts.verbose_update = 1;
590         opts.trivial_merges_only = 1;
591         opts.merge = 1;
592         trees[nr_trees] = parse_tree_indirect(common);
593         if (!trees[nr_trees++])
594                 return -1;
595         trees[nr_trees] = parse_tree_indirect(head);
596         if (!trees[nr_trees++])
597                 return -1;
598         trees[nr_trees] = parse_tree_indirect(one);
599         if (!trees[nr_trees++])
600                 return -1;
601         opts.fn = threeway_merge;
602         cache_tree_free(&active_cache_tree);
603         for (i = 0; i < nr_trees; i++) {
604                 parse_tree(trees[i]);
605                 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
606         }
607         if (unpack_trees(nr_trees, t, &opts))
608                 return -1;
609         return 0;
610 }
611
612 static void write_tree_trivial(unsigned char *sha1)
613 {
614         if (write_cache_as_tree(sha1, 0, NULL))
615                 die(_("git write-tree failed to write a tree"));
616 }
617
618 static const char *merge_argument(struct commit *commit)
619 {
620         if (commit)
621                 return sha1_to_hex(commit->object.sha1);
622         else
623                 return EMPTY_TREE_SHA1_HEX;
624 }
625
626 int try_merge_command(const char *strategy, size_t xopts_nr,
627                       const char **xopts, struct commit_list *common,
628                       const char *head_arg, struct commit_list *remotes)
629 {
630         const char **args;
631         int i = 0, x = 0, ret;
632         struct commit_list *j;
633         struct strbuf buf = STRBUF_INIT;
634
635         args = xmalloc((4 + xopts_nr + commit_list_count(common) +
636                         commit_list_count(remotes)) * sizeof(char *));
637         strbuf_addf(&buf, "merge-%s", strategy);
638         args[i++] = buf.buf;
639         for (x = 0; x < xopts_nr; x++) {
640                 char *s = xmalloc(strlen(xopts[x])+2+1);
641                 strcpy(s, "--");
642                 strcpy(s+2, xopts[x]);
643                 args[i++] = s;
644         }
645         for (j = common; j; j = j->next)
646                 args[i++] = xstrdup(merge_argument(j->item));
647         args[i++] = "--";
648         args[i++] = head_arg;
649         for (j = remotes; j; j = j->next)
650                 args[i++] = xstrdup(merge_argument(j->item));
651         args[i] = NULL;
652         ret = run_command_v_opt(args, RUN_GIT_CMD);
653         strbuf_release(&buf);
654         i = 1;
655         for (x = 0; x < xopts_nr; x++)
656                 free((void *)args[i++]);
657         for (j = common; j; j = j->next)
658                 free((void *)args[i++]);
659         i += 2;
660         for (j = remotes; j; j = j->next)
661                 free((void *)args[i++]);
662         free(args);
663         discard_cache();
664         if (read_cache() < 0)
665                 die(_("failed to read the cache"));
666         resolve_undo_clear();
667
668         return ret;
669 }
670
671 static int try_merge_strategy(const char *strategy, struct commit_list *common,
672                               struct commit *head, const char *head_arg)
673 {
674         int index_fd;
675         struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
676
677         index_fd = hold_locked_index(lock, 1);
678         refresh_cache(REFRESH_QUIET);
679         if (active_cache_changed &&
680                         (write_cache(index_fd, active_cache, active_nr) ||
681                          commit_locked_index(lock)))
682                 return error(_("Unable to write index."));
683         rollback_lock_file(lock);
684
685         if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
686                 int clean, x;
687                 struct commit *result;
688                 struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
689                 int index_fd;
690                 struct commit_list *reversed = NULL;
691                 struct merge_options o;
692                 struct commit_list *j;
693
694                 if (remoteheads->next) {
695                         error(_("Not handling anything other than two heads merge."));
696                         return 2;
697                 }
698
699                 init_merge_options(&o);
700                 if (!strcmp(strategy, "subtree"))
701                         o.subtree_shift = "";
702
703                 o.renormalize = option_renormalize;
704                 o.show_rename_progress =
705                         show_progress == -1 ? isatty(2) : show_progress;
706
707                 for (x = 0; x < xopts_nr; x++)
708                         if (parse_merge_opt(&o, xopts[x]))
709                                 die(_("Unknown option for merge-recursive: -X%s"), xopts[x]);
710
711                 o.branch1 = head_arg;
712                 o.branch2 = merge_remote_util(remoteheads->item)->name;
713
714                 for (j = common; j; j = j->next)
715                         commit_list_insert(j->item, &reversed);
716
717                 index_fd = hold_locked_index(lock, 1);
718                 clean = merge_recursive(&o, head,
719                                 remoteheads->item, reversed, &result);
720                 if (active_cache_changed &&
721                                 (write_cache(index_fd, active_cache, active_nr) ||
722                                  commit_locked_index(lock)))
723                         die (_("unable to write %s"), get_index_file());
724                 rollback_lock_file(lock);
725                 return clean ? 0 : 1;
726         } else {
727                 return try_merge_command(strategy, xopts_nr, xopts,
728                                                 common, head_arg, remoteheads);
729         }
730 }
731
732 static void count_diff_files(struct diff_queue_struct *q,
733                              struct diff_options *opt, void *data)
734 {
735         int *count = data;
736
737         (*count) += q->nr;
738 }
739
740 static int count_unmerged_entries(void)
741 {
742         int i, ret = 0;
743
744         for (i = 0; i < active_nr; i++)
745                 if (ce_stage(active_cache[i]))
746                         ret++;
747
748         return ret;
749 }
750
751 int checkout_fast_forward(const unsigned char *head, const unsigned char *remote)
752 {
753         struct tree *trees[MAX_UNPACK_TREES];
754         struct unpack_trees_options opts;
755         struct tree_desc t[MAX_UNPACK_TREES];
756         int i, fd, nr_trees = 0;
757         struct dir_struct dir;
758         struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
759
760         refresh_cache(REFRESH_QUIET);
761
762         fd = hold_locked_index(lock_file, 1);
763
764         memset(&trees, 0, sizeof(trees));
765         memset(&opts, 0, sizeof(opts));
766         memset(&t, 0, sizeof(t));
767         memset(&dir, 0, sizeof(dir));
768         dir.flags |= DIR_SHOW_IGNORED;
769         dir.exclude_per_dir = ".gitignore";
770         opts.dir = &dir;
771
772         opts.head_idx = 1;
773         opts.src_index = &the_index;
774         opts.dst_index = &the_index;
775         opts.update = 1;
776         opts.verbose_update = 1;
777         opts.merge = 1;
778         opts.fn = twoway_merge;
779         setup_unpack_trees_porcelain(&opts, "merge");
780
781         trees[nr_trees] = parse_tree_indirect(head);
782         if (!trees[nr_trees++])
783                 return -1;
784         trees[nr_trees] = parse_tree_indirect(remote);
785         if (!trees[nr_trees++])
786                 return -1;
787         for (i = 0; i < nr_trees; i++) {
788                 parse_tree(trees[i]);
789                 init_tree_desc(t+i, trees[i]->buffer, trees[i]->size);
790         }
791         if (unpack_trees(nr_trees, t, &opts))
792                 return -1;
793         if (write_cache(fd, active_cache, active_nr) ||
794                 commit_locked_index(lock_file))
795                 die(_("unable to write new index file"));
796         return 0;
797 }
798
799 static void split_merge_strategies(const char *string, struct strategy **list,
800                                    int *nr, int *alloc)
801 {
802         char *p, *q, *buf;
803
804         if (!string)
805                 return;
806
807         buf = xstrdup(string);
808         q = buf;
809         for (;;) {
810                 p = strchr(q, ' ');
811                 if (!p) {
812                         ALLOC_GROW(*list, *nr + 1, *alloc);
813                         (*list)[(*nr)++].name = xstrdup(q);
814                         free(buf);
815                         return;
816                 } else {
817                         *p = '\0';
818                         ALLOC_GROW(*list, *nr + 1, *alloc);
819                         (*list)[(*nr)++].name = xstrdup(q);
820                         q = ++p;
821                 }
822         }
823 }
824
825 static void add_strategies(const char *string, unsigned attr)
826 {
827         struct strategy *list = NULL;
828         int list_alloc = 0, list_nr = 0, i;
829
830         memset(&list, 0, sizeof(list));
831         split_merge_strategies(string, &list, &list_nr, &list_alloc);
832         if (list) {
833                 for (i = 0; i < list_nr; i++)
834                         append_strategy(get_strategy(list[i].name));
835                 return;
836         }
837         for (i = 0; i < ARRAY_SIZE(all_strategy); i++)
838                 if (all_strategy[i].attr & attr)
839                         append_strategy(&all_strategy[i]);
840
841 }
842
843 static void write_merge_msg(struct strbuf *msg)
844 {
845         int fd = open(git_path("MERGE_MSG"), O_WRONLY | O_CREAT, 0666);
846         if (fd < 0)
847                 die_errno(_("Could not open '%s' for writing"),
848                           git_path("MERGE_MSG"));
849         if (write_in_full(fd, msg->buf, msg->len) != msg->len)
850                 die_errno(_("Could not write to '%s'"), git_path("MERGE_MSG"));
851         close(fd);
852 }
853
854 static void read_merge_msg(struct strbuf *msg)
855 {
856         strbuf_reset(msg);
857         if (strbuf_read_file(msg, git_path("MERGE_MSG"), 0) < 0)
858                 die_errno(_("Could not read from '%s'"), git_path("MERGE_MSG"));
859 }
860
861 static void write_merge_state(void);
862 static void abort_commit(const char *err_msg)
863 {
864         if (err_msg)
865                 error("%s", err_msg);
866         fprintf(stderr,
867                 _("Not committing merge; use 'git commit' to complete the merge.\n"));
868         write_merge_state();
869         exit(1);
870 }
871
872 static void prepare_to_commit(void)
873 {
874         struct strbuf msg = STRBUF_INIT;
875         strbuf_addbuf(&msg, &merge_msg);
876         strbuf_addch(&msg, '\n');
877         write_merge_msg(&msg);
878         run_hook(get_index_file(), "prepare-commit-msg",
879                  git_path("MERGE_MSG"), "merge", NULL, NULL);
880         if (0 < option_edit) {
881                 if (launch_editor(git_path("MERGE_MSG"), NULL, NULL))
882                         abort_commit(NULL);
883         }
884         read_merge_msg(&msg);
885         stripspace(&msg, 0 < option_edit);
886         if (!msg.len)
887                 abort_commit(_("Empty commit message."));
888         strbuf_release(&merge_msg);
889         strbuf_addbuf(&merge_msg, &msg);
890         strbuf_release(&msg);
891 }
892
893 static int merge_trivial(struct commit *head)
894 {
895         unsigned char result_tree[20], result_commit[20];
896         struct commit_list *parent = xmalloc(sizeof(*parent));
897
898         write_tree_trivial(result_tree);
899         printf(_("Wonderful.\n"));
900         parent->item = head;
901         parent->next = xmalloc(sizeof(*parent->next));
902         parent->next->item = remoteheads->item;
903         parent->next->next = NULL;
904         prepare_to_commit();
905         commit_tree(merge_msg.buf, result_tree, parent, result_commit, NULL);
906         finish(head, result_commit, "In-index merge");
907         drop_save();
908         return 0;
909 }
910
911 static int finish_automerge(struct commit *head,
912                             struct commit_list *common,
913                             unsigned char *result_tree,
914                             const char *wt_strategy)
915 {
916         struct commit_list *parents = NULL, *j;
917         struct strbuf buf = STRBUF_INIT;
918         unsigned char result_commit[20];
919
920         free_commit_list(common);
921         if (allow_fast_forward) {
922                 parents = remoteheads;
923                 commit_list_insert(head, &parents);
924                 parents = reduce_heads(parents);
925         } else {
926                 struct commit_list **pptr = &parents;
927
928                 pptr = &commit_list_insert(head,
929                                 pptr)->next;
930                 for (j = remoteheads; j; j = j->next)
931                         pptr = &commit_list_insert(j->item, pptr)->next;
932         }
933         strbuf_addch(&merge_msg, '\n');
934         prepare_to_commit();
935         free_commit_list(remoteheads);
936         commit_tree(merge_msg.buf, result_tree, parents, result_commit, NULL);
937         strbuf_addf(&buf, "Merge made by the '%s' strategy.", wt_strategy);
938         finish(head, result_commit, buf.buf);
939         strbuf_release(&buf);
940         drop_save();
941         return 0;
942 }
943
944 static int suggest_conflicts(int renormalizing)
945 {
946         FILE *fp;
947         int pos;
948
949         fp = fopen(git_path("MERGE_MSG"), "a");
950         if (!fp)
951                 die_errno(_("Could not open '%s' for writing"),
952                           git_path("MERGE_MSG"));
953         fprintf(fp, "\nConflicts:\n");
954         for (pos = 0; pos < active_nr; pos++) {
955                 struct cache_entry *ce = active_cache[pos];
956
957                 if (ce_stage(ce)) {
958                         fprintf(fp, "\t%s\n", ce->name);
959                         while (pos + 1 < active_nr &&
960                                         !strcmp(ce->name,
961                                                 active_cache[pos + 1]->name))
962                                 pos++;
963                 }
964         }
965         fclose(fp);
966         rerere(allow_rerere_auto);
967         printf(_("Automatic merge failed; "
968                         "fix conflicts and then commit the result.\n"));
969         return 1;
970 }
971
972 static struct commit *is_old_style_invocation(int argc, const char **argv,
973                                               const unsigned char *head)
974 {
975         struct commit *second_token = NULL;
976         if (argc > 2) {
977                 unsigned char second_sha1[20];
978
979                 if (get_sha1(argv[1], second_sha1))
980                         return NULL;
981                 second_token = lookup_commit_reference_gently(second_sha1, 0);
982                 if (!second_token)
983                         die(_("'%s' is not a commit"), argv[1]);
984                 if (hashcmp(second_token->object.sha1, head))
985                         return NULL;
986         }
987         return second_token;
988 }
989
990 static int evaluate_result(void)
991 {
992         int cnt = 0;
993         struct rev_info rev;
994
995         /* Check how many files differ. */
996         init_revisions(&rev, "");
997         setup_revisions(0, NULL, &rev, NULL);
998         rev.diffopt.output_format |=
999                 DIFF_FORMAT_CALLBACK;
1000         rev.diffopt.format_callback = count_diff_files;
1001         rev.diffopt.format_callback_data = &cnt;
1002         run_diff_files(&rev, 0);
1003
1004         /*
1005          * Check how many unmerged entries are
1006          * there.
1007          */
1008         cnt += count_unmerged_entries();
1009
1010         return cnt;
1011 }
1012
1013 /*
1014  * Pretend as if the user told us to merge with the tracking
1015  * branch we have for the upstream of the current branch
1016  */
1017 static int setup_with_upstream(const char ***argv)
1018 {
1019         struct branch *branch = branch_get(NULL);
1020         int i;
1021         const char **args;
1022
1023         if (!branch)
1024                 die(_("No current branch."));
1025         if (!branch->remote)
1026                 die(_("No remote for the current branch."));
1027         if (!branch->merge_nr)
1028                 die(_("No default upstream defined for the current branch."));
1029
1030         args = xcalloc(branch->merge_nr + 1, sizeof(char *));
1031         for (i = 0; i < branch->merge_nr; i++) {
1032                 if (!branch->merge[i]->dst)
1033                         die(_("No remote tracking branch for %s from %s"),
1034                             branch->merge[i]->src, branch->remote_name);
1035                 args[i] = branch->merge[i]->dst;
1036         }
1037         args[i] = NULL;
1038         *argv = args;
1039         return i;
1040 }
1041
1042 static void write_merge_state(void)
1043 {
1044         int fd;
1045         struct commit_list *j;
1046         struct strbuf buf = STRBUF_INIT;
1047
1048         for (j = remoteheads; j; j = j->next) {
1049                 unsigned const char *sha1;
1050                 struct commit *c = j->item;
1051                 if (c->util && merge_remote_util(c)->obj) {
1052                         sha1 = merge_remote_util(c)->obj->sha1;
1053                 } else {
1054                         sha1 = c->object.sha1;
1055                 }
1056                 strbuf_addf(&buf, "%s\n", sha1_to_hex(sha1));
1057         }
1058         fd = open(git_path("MERGE_HEAD"), O_WRONLY | O_CREAT, 0666);
1059         if (fd < 0)
1060                 die_errno(_("Could not open '%s' for writing"),
1061                           git_path("MERGE_HEAD"));
1062         if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1063                 die_errno(_("Could not write to '%s'"), git_path("MERGE_HEAD"));
1064         close(fd);
1065         strbuf_addch(&merge_msg, '\n');
1066         write_merge_msg(&merge_msg);
1067         fd = open(git_path("MERGE_MODE"), O_WRONLY | O_CREAT | O_TRUNC, 0666);
1068         if (fd < 0)
1069                 die_errno(_("Could not open '%s' for writing"),
1070                           git_path("MERGE_MODE"));
1071         strbuf_reset(&buf);
1072         if (!allow_fast_forward)
1073                 strbuf_addf(&buf, "no-ff");
1074         if (write_in_full(fd, buf.buf, buf.len) != buf.len)
1075                 die_errno(_("Could not write to '%s'"), git_path("MERGE_MODE"));
1076         close(fd);
1077 }
1078
1079 static int default_edit_option(void)
1080 {
1081         static const char name[] = "GIT_MERGE_AUTOEDIT";
1082         const char *e = getenv(name);
1083         struct stat st_stdin, st_stdout;
1084
1085         if (have_message)
1086                 /* an explicit -m msg without --[no-]edit */
1087                 return 0;
1088
1089         if (e) {
1090                 int v = git_config_maybe_bool(name, e);
1091                 if (v < 0)
1092                         die("Bad value '%s' in environment '%s'", e, name);
1093                 return v;
1094         }
1095
1096         /* Use editor if stdin and stdout are the same and is a tty */
1097         return (!fstat(0, &st_stdin) &&
1098                 !fstat(1, &st_stdout) &&
1099                 isatty(0) &&
1100                 st_stdin.st_dev == st_stdout.st_dev &&
1101                 st_stdin.st_ino == st_stdout.st_ino &&
1102                 st_stdin.st_mode == st_stdout.st_mode);
1103 }
1104
1105
1106 int cmd_merge(int argc, const char **argv, const char *prefix)
1107 {
1108         unsigned char result_tree[20];
1109         unsigned char stash[20];
1110         unsigned char head_sha1[20];
1111         struct commit *head_commit;
1112         struct strbuf buf = STRBUF_INIT;
1113         const char *head_arg;
1114         int flag, i;
1115         int best_cnt = -1, merge_was_ok = 0, automerge_was_ok = 0;
1116         struct commit_list *common = NULL;
1117         const char *best_strategy = NULL, *wt_strategy = NULL;
1118         struct commit_list **remotes = &remoteheads;
1119
1120         if (argc == 2 && !strcmp(argv[1], "-h"))
1121                 usage_with_options(builtin_merge_usage, builtin_merge_options);
1122
1123         /*
1124          * Check if we are _not_ on a detached HEAD, i.e. if there is a
1125          * current branch.
1126          */
1127         branch = resolve_ref("HEAD", head_sha1, 0, &flag);
1128         if (branch && !prefixcmp(branch, "refs/heads/"))
1129                 branch += 11;
1130         if (!branch || is_null_sha1(head_sha1))
1131                 head_commit = NULL;
1132         else
1133                 head_commit = lookup_commit_or_die(head_sha1, "HEAD");
1134
1135         git_config(git_merge_config, NULL);
1136
1137         if (branch_mergeoptions)
1138                 parse_branch_merge_options(branch_mergeoptions);
1139         argc = parse_options(argc, argv, prefix, builtin_merge_options,
1140                         builtin_merge_usage, 0);
1141
1142         if (verbosity < 0 && show_progress == -1)
1143                 show_progress = 0;
1144
1145         if (abort_current_merge) {
1146                 int nargc = 2;
1147                 const char *nargv[] = {"reset", "--merge", NULL};
1148
1149                 if (!file_exists(git_path("MERGE_HEAD")))
1150                         die(_("There is no merge to abort (MERGE_HEAD missing)."));
1151
1152                 /* Invoke 'git reset --merge' */
1153                 return cmd_reset(nargc, nargv, prefix);
1154         }
1155
1156         if (read_cache_unmerged())
1157                 die_resolve_conflict("merge");
1158
1159         if (file_exists(git_path("MERGE_HEAD"))) {
1160                 /*
1161                  * There is no unmerged entry, don't advise 'git
1162                  * add/rm <file>', just 'git commit'.
1163                  */
1164                 if (advice_resolve_conflict)
1165                         die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
1166                                   "Please, commit your changes before you can merge."));
1167                 else
1168                         die(_("You have not concluded your merge (MERGE_HEAD exists)."));
1169         }
1170         if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
1171                 if (advice_resolve_conflict)
1172                         die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
1173                             "Please, commit your changes before you can merge."));
1174                 else
1175                         die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
1176         }
1177         resolve_undo_clear();
1178
1179         if (verbosity < 0)
1180                 show_diffstat = 0;
1181
1182         if (squash) {
1183                 if (!allow_fast_forward)
1184                         die(_("You cannot combine --squash with --no-ff."));
1185                 option_commit = 0;
1186         }
1187
1188         if (!allow_fast_forward && fast_forward_only)
1189                 die(_("You cannot combine --no-ff with --ff-only."));
1190
1191         if (!abort_current_merge) {
1192                 if (!argc && default_to_upstream)
1193                         argc = setup_with_upstream(&argv);
1194                 else if (argc == 1 && !strcmp(argv[0], "-"))
1195                         argv[0] = "@{-1}";
1196         }
1197         if (!argc)
1198                 usage_with_options(builtin_merge_usage,
1199                         builtin_merge_options);
1200
1201         /*
1202          * This could be traditional "merge <msg> HEAD <commit>..."  and
1203          * the way we can tell it is to see if the second token is HEAD,
1204          * but some people might have misused the interface and used a
1205          * committish that is the same as HEAD there instead.
1206          * Traditional format never would have "-m" so it is an
1207          * additional safety measure to check for it.
1208          */
1209
1210         if (!have_message && head_commit &&
1211             is_old_style_invocation(argc, argv, head_commit->object.sha1)) {
1212                 strbuf_addstr(&merge_msg, argv[0]);
1213                 head_arg = argv[1];
1214                 argv += 2;
1215                 argc -= 2;
1216         } else if (!head_commit) {
1217                 struct commit *remote_head;
1218                 /*
1219                  * If the merged head is a valid one there is no reason
1220                  * to forbid "git merge" into a branch yet to be born.
1221                  * We do the same for "git pull".
1222                  */
1223                 if (argc != 1)
1224                         die(_("Can merge only exactly one commit into "
1225                                 "empty head"));
1226                 if (squash)
1227                         die(_("Squash commit into empty head not supported yet"));
1228                 if (!allow_fast_forward)
1229                         die(_("Non-fast-forward commit does not make sense into "
1230                             "an empty head"));
1231                 remote_head = get_merge_parent(argv[0]);
1232                 if (!remote_head)
1233                         die(_("%s - not something we can merge"), argv[0]);
1234                 read_empty(remote_head->object.sha1, 0);
1235                 update_ref("initial pull", "HEAD", remote_head->object.sha1,
1236                            NULL, 0, DIE_ON_ERR);
1237                 return 0;
1238         } else {
1239                 struct strbuf merge_names = STRBUF_INIT;
1240
1241                 /* We are invoked directly as the first-class UI. */
1242                 head_arg = "HEAD";
1243
1244                 /*
1245                  * All the rest are the commits being merged; prepare
1246                  * the standard merge summary message to be appended
1247                  * to the given message.
1248                  */
1249                 for (i = 0; i < argc; i++)
1250                         merge_name(argv[i], &merge_names);
1251
1252                 if (!have_message || shortlog_len) {
1253                         struct fmt_merge_msg_opts opts;
1254                         memset(&opts, 0, sizeof(opts));
1255                         opts.add_title = !have_message;
1256                         opts.shortlog_len = shortlog_len;
1257
1258                         fmt_merge_msg(&merge_names, &merge_msg, &opts);
1259                         if (merge_msg.len)
1260                                 strbuf_setlen(&merge_msg, merge_msg.len - 1);
1261                 }
1262         }
1263
1264         if (!head_commit || !argc)
1265                 usage_with_options(builtin_merge_usage,
1266                         builtin_merge_options);
1267
1268         strbuf_addstr(&buf, "merge");
1269         for (i = 0; i < argc; i++)
1270                 strbuf_addf(&buf, " %s", argv[i]);
1271         setenv("GIT_REFLOG_ACTION", buf.buf, 0);
1272         strbuf_reset(&buf);
1273
1274         for (i = 0; i < argc; i++) {
1275                 struct commit *commit = get_merge_parent(argv[i]);
1276                 if (!commit)
1277                         die(_("%s - not something we can merge"), argv[i]);
1278                 remotes = &commit_list_insert(commit, remotes)->next;
1279                 strbuf_addf(&buf, "GITHEAD_%s",
1280                             sha1_to_hex(commit->object.sha1));
1281                 setenv(buf.buf, argv[i], 1);
1282                 strbuf_reset(&buf);
1283                 if (merge_remote_util(commit) &&
1284                     merge_remote_util(commit)->obj &&
1285                     merge_remote_util(commit)->obj->type == OBJ_TAG) {
1286                         option_edit = 1;
1287                         allow_fast_forward = 0;
1288                 }
1289         }
1290
1291         if (option_edit < 0)
1292                 option_edit = default_edit_option();
1293
1294         if (!use_strategies) {
1295                 if (!remoteheads->next)
1296                         add_strategies(pull_twohead, DEFAULT_TWOHEAD);
1297                 else
1298                         add_strategies(pull_octopus, DEFAULT_OCTOPUS);
1299         }
1300
1301         for (i = 0; i < use_strategies_nr; i++) {
1302                 if (use_strategies[i]->attr & NO_FAST_FORWARD)
1303                         allow_fast_forward = 0;
1304                 if (use_strategies[i]->attr & NO_TRIVIAL)
1305                         allow_trivial = 0;
1306         }
1307
1308         if (!remoteheads->next)
1309                 common = get_merge_bases(head_commit, remoteheads->item, 1);
1310         else {
1311                 struct commit_list *list = remoteheads;
1312                 commit_list_insert(head_commit, &list);
1313                 common = get_octopus_merge_bases(list);
1314                 free(list);
1315         }
1316
1317         update_ref("updating ORIG_HEAD", "ORIG_HEAD", head_commit->object.sha1,
1318                    NULL, 0, DIE_ON_ERR);
1319
1320         if (!common)
1321                 ; /* No common ancestors found. We need a real merge. */
1322         else if (!remoteheads->next && !common->next &&
1323                         common->item == remoteheads->item) {
1324                 /*
1325                  * If head can reach all the merge then we are up to date.
1326                  * but first the most common case of merging one remote.
1327                  */
1328                 finish_up_to_date("Already up-to-date.");
1329                 return 0;
1330         } else if (allow_fast_forward && !remoteheads->next &&
1331                         !common->next &&
1332                         !hashcmp(common->item->object.sha1, head_commit->object.sha1)) {
1333                 /* Again the most common case of merging one remote. */
1334                 struct strbuf msg = STRBUF_INIT;
1335                 struct commit *commit;
1336                 char hex[41];
1337
1338                 strcpy(hex, find_unique_abbrev(head_commit->object.sha1, DEFAULT_ABBREV));
1339
1340                 if (verbosity >= 0)
1341                         printf(_("Updating %s..%s\n"),
1342                                 hex,
1343                                 find_unique_abbrev(remoteheads->item->object.sha1,
1344                                 DEFAULT_ABBREV));
1345                 strbuf_addstr(&msg, "Fast-forward");
1346                 if (have_message)
1347                         strbuf_addstr(&msg,
1348                                 " (no commit created; -m option ignored)");
1349                 commit = remoteheads->item;
1350                 if (!commit)
1351                         return 1;
1352
1353                 if (checkout_fast_forward(head_commit->object.sha1,
1354                                           commit->object.sha1))
1355                         return 1;
1356
1357                 finish(head_commit, commit->object.sha1, msg.buf);
1358                 drop_save();
1359                 return 0;
1360         } else if (!remoteheads->next && common->next)
1361                 ;
1362                 /*
1363                  * We are not doing octopus and not fast-forward.  Need
1364                  * a real merge.
1365                  */
1366         else if (!remoteheads->next && !common->next && option_commit) {
1367                 /*
1368                  * We are not doing octopus, not fast-forward, and have
1369                  * only one common.
1370                  */
1371                 refresh_cache(REFRESH_QUIET);
1372                 if (allow_trivial && !fast_forward_only) {
1373                         /* See if it is really trivial. */
1374                         git_committer_info(IDENT_ERROR_ON_NO_NAME);
1375                         printf(_("Trying really trivial in-index merge...\n"));
1376                         if (!read_tree_trivial(common->item->object.sha1,
1377                                         head_commit->object.sha1, remoteheads->item->object.sha1))
1378                                 return merge_trivial(head_commit);
1379                         printf(_("Nope.\n"));
1380                 }
1381         } else {
1382                 /*
1383                  * An octopus.  If we can reach all the remote we are up
1384                  * to date.
1385                  */
1386                 int up_to_date = 1;
1387                 struct commit_list *j;
1388
1389                 for (j = remoteheads; j; j = j->next) {
1390                         struct commit_list *common_one;
1391
1392                         /*
1393                          * Here we *have* to calculate the individual
1394                          * merge_bases again, otherwise "git merge HEAD^
1395                          * HEAD^^" would be missed.
1396                          */
1397                         common_one = get_merge_bases(head_commit, j->item, 1);
1398                         if (hashcmp(common_one->item->object.sha1,
1399                                 j->item->object.sha1)) {
1400                                 up_to_date = 0;
1401                                 break;
1402                         }
1403                 }
1404                 if (up_to_date) {
1405                         finish_up_to_date("Already up-to-date. Yeeah!");
1406                         return 0;
1407                 }
1408         }
1409
1410         if (fast_forward_only)
1411                 die(_("Not possible to fast-forward, aborting."));
1412
1413         /* We are going to make a new commit. */
1414         git_committer_info(IDENT_ERROR_ON_NO_NAME);
1415
1416         /*
1417          * At this point, we need a real merge.  No matter what strategy
1418          * we use, it would operate on the index, possibly affecting the
1419          * working tree, and when resolved cleanly, have the desired
1420          * tree in the index -- this means that the index must be in
1421          * sync with the head commit.  The strategies are responsible
1422          * to ensure this.
1423          */
1424         if (use_strategies_nr == 1 ||
1425             /*
1426              * Stash away the local changes so that we can try more than one.
1427              */
1428             save_state(stash))
1429                 hashcpy(stash, null_sha1);
1430
1431         for (i = 0; i < use_strategies_nr; i++) {
1432                 int ret;
1433                 if (i) {
1434                         printf(_("Rewinding the tree to pristine...\n"));
1435                         restore_state(head_commit->object.sha1, stash);
1436                 }
1437                 if (use_strategies_nr != 1)
1438                         printf(_("Trying merge strategy %s...\n"),
1439                                 use_strategies[i]->name);
1440                 /*
1441                  * Remember which strategy left the state in the working
1442                  * tree.
1443                  */
1444                 wt_strategy = use_strategies[i]->name;
1445
1446                 ret = try_merge_strategy(use_strategies[i]->name,
1447                                          common, head_commit, head_arg);
1448                 if (!option_commit && !ret) {
1449                         merge_was_ok = 1;
1450                         /*
1451                          * This is necessary here just to avoid writing
1452                          * the tree, but later we will *not* exit with
1453                          * status code 1 because merge_was_ok is set.
1454                          */
1455                         ret = 1;
1456                 }
1457
1458                 if (ret) {
1459                         /*
1460                          * The backend exits with 1 when conflicts are
1461                          * left to be resolved, with 2 when it does not
1462                          * handle the given merge at all.
1463                          */
1464                         if (ret == 1) {
1465                                 int cnt = evaluate_result();
1466
1467                                 if (best_cnt <= 0 || cnt <= best_cnt) {
1468                                         best_strategy = use_strategies[i]->name;
1469                                         best_cnt = cnt;
1470                                 }
1471                         }
1472                         if (merge_was_ok)
1473                                 break;
1474                         else
1475                                 continue;
1476                 }
1477
1478                 /* Automerge succeeded. */
1479                 write_tree_trivial(result_tree);
1480                 automerge_was_ok = 1;
1481                 break;
1482         }
1483
1484         /*
1485          * If we have a resulting tree, that means the strategy module
1486          * auto resolved the merge cleanly.
1487          */
1488         if (automerge_was_ok)
1489                 return finish_automerge(head_commit, common, result_tree,
1490                                         wt_strategy);
1491
1492         /*
1493          * Pick the result from the best strategy and have the user fix
1494          * it up.
1495          */
1496         if (!best_strategy) {
1497                 restore_state(head_commit->object.sha1, stash);
1498                 if (use_strategies_nr > 1)
1499                         fprintf(stderr,
1500                                 _("No merge strategy handled the merge.\n"));
1501                 else
1502                         fprintf(stderr, _("Merge with strategy %s failed.\n"),
1503                                 use_strategies[0]->name);
1504                 return 2;
1505         } else if (best_strategy == wt_strategy)
1506                 ; /* We already have its result in the working tree. */
1507         else {
1508                 printf(_("Rewinding the tree to pristine...\n"));
1509                 restore_state(head_commit->object.sha1, stash);
1510                 printf(_("Using the %s to prepare resolving by hand.\n"),
1511                         best_strategy);
1512                 try_merge_strategy(best_strategy, common, head_commit, head_arg);
1513         }
1514
1515         if (squash)
1516                 finish(head_commit, NULL, NULL);
1517         else
1518                 write_merge_state();
1519
1520         if (merge_was_ok) {
1521                 fprintf(stderr, _("Automatic merge went well; "
1522                         "stopped before committing as requested\n"));
1523                 return 0;
1524         } else
1525                 return suggest_conflicts(option_renormalize);
1526 }