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