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