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