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