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