builtin / checkout.con commit Merge branch 'nd/travis-gcc-8' (6105fee)
   1#include "builtin.h"
   2#include "config.h"
   3#include "checkout.h"
   4#include "lockfile.h"
   5#include "parse-options.h"
   6#include "refs.h"
   7#include "commit.h"
   8#include "tree.h"
   9#include "tree-walk.h"
  10#include "cache-tree.h"
  11#include "unpack-trees.h"
  12#include "dir.h"
  13#include "run-command.h"
  14#include "merge-recursive.h"
  15#include "branch.h"
  16#include "diff.h"
  17#include "revision.h"
  18#include "remote.h"
  19#include "blob.h"
  20#include "xdiff-interface.h"
  21#include "ll-merge.h"
  22#include "resolve-undo.h"
  23#include "submodule-config.h"
  24#include "submodule.h"
  25
  26static const char * const checkout_usage[] = {
  27        N_("git checkout [<options>] <branch>"),
  28        N_("git checkout [<options>] [<branch>] -- <file>..."),
  29        NULL,
  30};
  31
  32struct checkout_opts {
  33        int patch_mode;
  34        int quiet;
  35        int merge;
  36        int force;
  37        int force_detach;
  38        int writeout_stage;
  39        int overwrite_ignore;
  40        int ignore_skipworktree;
  41        int ignore_other_worktrees;
  42        int show_progress;
  43
  44        const char *new_branch;
  45        const char *new_branch_force;
  46        const char *new_orphan_branch;
  47        int new_branch_log;
  48        enum branch_track track;
  49        struct diff_options diff_options;
  50
  51        int branch_exists;
  52        const char *prefix;
  53        struct pathspec pathspec;
  54        struct tree *source_tree;
  55};
  56
  57static int post_checkout_hook(struct commit *old_commit, struct commit *new_commit,
  58                              int changed)
  59{
  60        return run_hook_le(NULL, "post-checkout",
  61                           oid_to_hex(old_commit ? &old_commit->object.oid : &null_oid),
  62                           oid_to_hex(new_commit ? &new_commit->object.oid : &null_oid),
  63                           changed ? "1" : "0", NULL);
  64        /* "new_commit" can be NULL when checking out from the index before
  65           a commit exists. */
  66
  67}
  68
  69static int update_some(const struct object_id *oid, struct strbuf *base,
  70                const char *pathname, unsigned mode, int stage, void *context)
  71{
  72        int len;
  73        struct cache_entry *ce;
  74        int pos;
  75
  76        if (S_ISDIR(mode))
  77                return READ_TREE_RECURSIVE;
  78
  79        len = base->len + strlen(pathname);
  80        ce = xcalloc(1, cache_entry_size(len));
  81        oidcpy(&ce->oid, oid);
  82        memcpy(ce->name, base->buf, base->len);
  83        memcpy(ce->name + base->len, pathname, len - base->len);
  84        ce->ce_flags = create_ce_flags(0) | CE_UPDATE;
  85        ce->ce_namelen = len;
  86        ce->ce_mode = create_ce_mode(mode);
  87
  88        /*
  89         * If the entry is the same as the current index, we can leave the old
  90         * entry in place. Whether it is UPTODATE or not, checkout_entry will
  91         * do the right thing.
  92         */
  93        pos = cache_name_pos(ce->name, ce->ce_namelen);
  94        if (pos >= 0) {
  95                struct cache_entry *old = active_cache[pos];
  96                if (ce->ce_mode == old->ce_mode &&
  97                    !oidcmp(&ce->oid, &old->oid)) {
  98                        old->ce_flags |= CE_UPDATE;
  99                        free(ce);
 100                        return 0;
 101                }
 102        }
 103
 104        add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
 105        return 0;
 106}
 107
 108static int read_tree_some(struct tree *tree, const struct pathspec *pathspec)
 109{
 110        read_tree_recursive(tree, "", 0, 0, pathspec, update_some, NULL);
 111
 112        /* update the index with the given tree's info
 113         * for all args, expanding wildcards, and exit
 114         * with any non-zero return code.
 115         */
 116        return 0;
 117}
 118
 119static int skip_same_name(const struct cache_entry *ce, int pos)
 120{
 121        while (++pos < active_nr &&
 122               !strcmp(active_cache[pos]->name, ce->name))
 123                ; /* skip */
 124        return pos;
 125}
 126
 127static int check_stage(int stage, const struct cache_entry *ce, int pos)
 128{
 129        while (pos < active_nr &&
 130               !strcmp(active_cache[pos]->name, ce->name)) {
 131                if (ce_stage(active_cache[pos]) == stage)
 132                        return 0;
 133                pos++;
 134        }
 135        if (stage == 2)
 136                return error(_("path '%s' does not have our version"), ce->name);
 137        else
 138                return error(_("path '%s' does not have their version"), ce->name);
 139}
 140
 141static int check_stages(unsigned stages, const struct cache_entry *ce, int pos)
 142{
 143        unsigned seen = 0;
 144        const char *name = ce->name;
 145
 146        while (pos < active_nr) {
 147                ce = active_cache[pos];
 148                if (strcmp(name, ce->name))
 149                        break;
 150                seen |= (1 << ce_stage(ce));
 151                pos++;
 152        }
 153        if ((stages & seen) != stages)
 154                return error(_("path '%s' does not have all necessary versions"),
 155                             name);
 156        return 0;
 157}
 158
 159static int checkout_stage(int stage, const struct cache_entry *ce, int pos,
 160                          const struct checkout *state)
 161{
 162        while (pos < active_nr &&
 163               !strcmp(active_cache[pos]->name, ce->name)) {
 164                if (ce_stage(active_cache[pos]) == stage)
 165                        return checkout_entry(active_cache[pos], state, NULL);
 166                pos++;
 167        }
 168        if (stage == 2)
 169                return error(_("path '%s' does not have our version"), ce->name);
 170        else
 171                return error(_("path '%s' does not have their version"), ce->name);
 172}
 173
 174static int checkout_merged(int pos, const struct checkout *state)
 175{
 176        struct cache_entry *ce = active_cache[pos];
 177        const char *path = ce->name;
 178        mmfile_t ancestor, ours, theirs;
 179        int status;
 180        struct object_id oid;
 181        mmbuffer_t result_buf;
 182        struct object_id threeway[3];
 183        unsigned mode = 0;
 184
 185        memset(threeway, 0, sizeof(threeway));
 186        while (pos < active_nr) {
 187                int stage;
 188                stage = ce_stage(ce);
 189                if (!stage || strcmp(path, ce->name))
 190                        break;
 191                oidcpy(&threeway[stage - 1], &ce->oid);
 192                if (stage == 2)
 193                        mode = create_ce_mode(ce->ce_mode);
 194                pos++;
 195                ce = active_cache[pos];
 196        }
 197        if (is_null_oid(&threeway[1]) || is_null_oid(&threeway[2]))
 198                return error(_("path '%s' does not have necessary versions"), path);
 199
 200        read_mmblob(&ancestor, &threeway[0]);
 201        read_mmblob(&ours, &threeway[1]);
 202        read_mmblob(&theirs, &threeway[2]);
 203
 204        /*
 205         * NEEDSWORK: re-create conflicts from merges with
 206         * merge.renormalize set, too
 207         */
 208        status = ll_merge(&result_buf, path, &ancestor, "base",
 209                          &ours, "ours", &theirs, "theirs", NULL);
 210        free(ancestor.ptr);
 211        free(ours.ptr);
 212        free(theirs.ptr);
 213        if (status < 0 || !result_buf.ptr) {
 214                free(result_buf.ptr);
 215                return error(_("path '%s': cannot merge"), path);
 216        }
 217
 218        /*
 219         * NEEDSWORK:
 220         * There is absolutely no reason to write this as a blob object
 221         * and create a phony cache entry.  This hack is primarily to get
 222         * to the write_entry() machinery that massages the contents to
 223         * work-tree format and writes out which only allows it for a
 224         * cache entry.  The code in write_entry() needs to be refactored
 225         * to allow us to feed a <buffer, size, mode> instead of a cache
 226         * entry.  Such a refactoring would help merge_recursive as well
 227         * (it also writes the merge result to the object database even
 228         * when it may contain conflicts).
 229         */
 230        if (write_object_file(result_buf.ptr, result_buf.size, blob_type, &oid))
 231                die(_("Unable to add merge result for '%s'"), path);
 232        free(result_buf.ptr);
 233        ce = make_cache_entry(mode, oid.hash, path, 2, 0);
 234        if (!ce)
 235                die(_("make_cache_entry failed for path '%s'"), path);
 236        status = checkout_entry(ce, state, NULL);
 237        free(ce);
 238        return status;
 239}
 240
 241static int checkout_paths(const struct checkout_opts *opts,
 242                          const char *revision)
 243{
 244        int pos;
 245        struct checkout state = CHECKOUT_INIT;
 246        static char *ps_matched;
 247        struct object_id rev;
 248        struct commit *head;
 249        int errs = 0;
 250        struct lock_file lock_file = LOCK_INIT;
 251
 252        if (opts->track != BRANCH_TRACK_UNSPECIFIED)
 253                die(_("'%s' cannot be used with updating paths"), "--track");
 254
 255        if (opts->new_branch_log)
 256                die(_("'%s' cannot be used with updating paths"), "-l");
 257
 258        if (opts->force && opts->patch_mode)
 259                die(_("'%s' cannot be used with updating paths"), "-f");
 260
 261        if (opts->force_detach)
 262                die(_("'%s' cannot be used with updating paths"), "--detach");
 263
 264        if (opts->merge && opts->patch_mode)
 265                die(_("'%s' cannot be used with %s"), "--merge", "--patch");
 266
 267        if (opts->force && opts->merge)
 268                die(_("'%s' cannot be used with %s"), "-f", "-m");
 269
 270        if (opts->new_branch)
 271                die(_("Cannot update paths and switch to branch '%s' at the same time."),
 272                    opts->new_branch);
 273
 274        if (opts->patch_mode)
 275                return run_add_interactive(revision, "--patch=checkout",
 276                                           &opts->pathspec);
 277
 278        hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
 279        if (read_cache_preload(&opts->pathspec) < 0)
 280                return error(_("index file corrupt"));
 281
 282        if (opts->source_tree)
 283                read_tree_some(opts->source_tree, &opts->pathspec);
 284
 285        ps_matched = xcalloc(opts->pathspec.nr, 1);
 286
 287        /*
 288         * Make sure all pathspecs participated in locating the paths
 289         * to be checked out.
 290         */
 291        for (pos = 0; pos < active_nr; pos++) {
 292                struct cache_entry *ce = active_cache[pos];
 293                ce->ce_flags &= ~CE_MATCHED;
 294                if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
 295                        continue;
 296                if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
 297                        /*
 298                         * "git checkout tree-ish -- path", but this entry
 299                         * is in the original index; it will not be checked
 300                         * out to the working tree and it does not matter
 301                         * if pathspec matched this entry.  We will not do
 302                         * anything to this entry at all.
 303                         */
 304                        continue;
 305                /*
 306                 * Either this entry came from the tree-ish we are
 307                 * checking the paths out of, or we are checking out
 308                 * of the index.
 309                 *
 310                 * If it comes from the tree-ish, we already know it
 311                 * matches the pathspec and could just stamp
 312                 * CE_MATCHED to it from update_some(). But we still
 313                 * need ps_matched and read_tree_recursive (and
 314                 * eventually tree_entry_interesting) cannot fill
 315                 * ps_matched yet. Once it can, we can avoid calling
 316                 * match_pathspec() for _all_ entries when
 317                 * opts->source_tree != NULL.
 318                 */
 319                if (ce_path_match(ce, &opts->pathspec, ps_matched))
 320                        ce->ce_flags |= CE_MATCHED;
 321        }
 322
 323        if (report_path_error(ps_matched, &opts->pathspec, opts->prefix)) {
 324                free(ps_matched);
 325                return 1;
 326        }
 327        free(ps_matched);
 328
 329        /* "checkout -m path" to recreate conflicted state */
 330        if (opts->merge)
 331                unmerge_marked_index(&the_index);
 332
 333        /* Any unmerged paths? */
 334        for (pos = 0; pos < active_nr; pos++) {
 335                const struct cache_entry *ce = active_cache[pos];
 336                if (ce->ce_flags & CE_MATCHED) {
 337                        if (!ce_stage(ce))
 338                                continue;
 339                        if (opts->force) {
 340                                warning(_("path '%s' is unmerged"), ce->name);
 341                        } else if (opts->writeout_stage) {
 342                                errs |= check_stage(opts->writeout_stage, ce, pos);
 343                        } else if (opts->merge) {
 344                                errs |= check_stages((1<<2) | (1<<3), ce, pos);
 345                        } else {
 346                                errs = 1;
 347                                error(_("path '%s' is unmerged"), ce->name);
 348                        }
 349                        pos = skip_same_name(ce, pos) - 1;
 350                }
 351        }
 352        if (errs)
 353                return 1;
 354
 355        /* Now we are committed to check them out */
 356        state.force = 1;
 357        state.refresh_cache = 1;
 358        state.istate = &the_index;
 359
 360        enable_delayed_checkout(&state);
 361        for (pos = 0; pos < active_nr; pos++) {
 362                struct cache_entry *ce = active_cache[pos];
 363                if (ce->ce_flags & CE_MATCHED) {
 364                        if (!ce_stage(ce)) {
 365                                errs |= checkout_entry(ce, &state, NULL);
 366                                continue;
 367                        }
 368                        if (opts->writeout_stage)
 369                                errs |= checkout_stage(opts->writeout_stage, ce, pos, &state);
 370                        else if (opts->merge)
 371                                errs |= checkout_merged(pos, &state);
 372                        pos = skip_same_name(ce, pos) - 1;
 373                }
 374        }
 375        errs |= finish_delayed_checkout(&state);
 376
 377        if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
 378                die(_("unable to write new index file"));
 379
 380        read_ref_full("HEAD", 0, &rev, NULL);
 381        head = lookup_commit_reference_gently(&rev, 1);
 382
 383        errs |= post_checkout_hook(head, head, 0);
 384        return errs;
 385}
 386
 387static void show_local_changes(struct object *head,
 388                               const struct diff_options *opts)
 389{
 390        struct rev_info rev;
 391        /* I think we want full paths, even if we're in a subdirectory. */
 392        init_revisions(&rev, NULL);
 393        rev.diffopt.flags = opts->flags;
 394        rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
 395        diff_setup_done(&rev.diffopt);
 396        add_pending_object(&rev, head, NULL);
 397        run_diff_index(&rev, 0);
 398}
 399
 400static void describe_detached_head(const char *msg, struct commit *commit)
 401{
 402        struct strbuf sb = STRBUF_INIT;
 403
 404        if (!parse_commit(commit))
 405                pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb);
 406        if (print_sha1_ellipsis()) {
 407                fprintf(stderr, "%s %s... %s\n", msg,
 408                        find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf);
 409        } else {
 410                fprintf(stderr, "%s %s %s\n", msg,
 411                        find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf);
 412        }
 413        strbuf_release(&sb);
 414}
 415
 416static int reset_tree(struct tree *tree, const struct checkout_opts *o,
 417                      int worktree, int *writeout_error)
 418{
 419        struct unpack_trees_options opts;
 420        struct tree_desc tree_desc;
 421
 422        memset(&opts, 0, sizeof(opts));
 423        opts.head_idx = -1;
 424        opts.update = worktree;
 425        opts.skip_unmerged = !worktree;
 426        opts.reset = 1;
 427        opts.merge = 1;
 428        opts.fn = oneway_merge;
 429        opts.verbose_update = o->show_progress;
 430        opts.src_index = &the_index;
 431        opts.dst_index = &the_index;
 432        parse_tree(tree);
 433        init_tree_desc(&tree_desc, tree->buffer, tree->size);
 434        switch (unpack_trees(1, &tree_desc, &opts)) {
 435        case -2:
 436                *writeout_error = 1;
 437                /*
 438                 * We return 0 nevertheless, as the index is all right
 439                 * and more importantly we have made best efforts to
 440                 * update paths in the work tree, and we cannot revert
 441                 * them.
 442                 */
 443                /* fallthrough */
 444        case 0:
 445                return 0;
 446        default:
 447                return 128;
 448        }
 449}
 450
 451struct branch_info {
 452        const char *name; /* The short name used */
 453        const char *path; /* The full name of a real branch */
 454        struct commit *commit; /* The named commit */
 455        /*
 456         * if not null the branch is detached because it's already
 457         * checked out in this checkout
 458         */
 459        char *checkout;
 460};
 461
 462static void setup_branch_path(struct branch_info *branch)
 463{
 464        struct strbuf buf = STRBUF_INIT;
 465
 466        strbuf_branchname(&buf, branch->name, INTERPRET_BRANCH_LOCAL);
 467        if (strcmp(buf.buf, branch->name))
 468                branch->name = xstrdup(buf.buf);
 469        strbuf_splice(&buf, 0, 0, "refs/heads/", 11);
 470        branch->path = strbuf_detach(&buf, NULL);
 471}
 472
 473static int merge_working_tree(const struct checkout_opts *opts,
 474                              struct branch_info *old_branch_info,
 475                              struct branch_info *new_branch_info,
 476                              int *writeout_error)
 477{
 478        int ret;
 479        struct lock_file lock_file = LOCK_INIT;
 480
 481        hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
 482        if (read_cache_preload(NULL) < 0)
 483                return error(_("index file corrupt"));
 484
 485        resolve_undo_clear();
 486        if (opts->force) {
 487                ret = reset_tree(get_commit_tree(new_branch_info->commit),
 488                                 opts, 1, writeout_error);
 489                if (ret)
 490                        return ret;
 491        } else {
 492                struct tree_desc trees[2];
 493                struct tree *tree;
 494                struct unpack_trees_options topts;
 495
 496                memset(&topts, 0, sizeof(topts));
 497                topts.head_idx = -1;
 498                topts.src_index = &the_index;
 499                topts.dst_index = &the_index;
 500
 501                setup_unpack_trees_porcelain(&topts, "checkout");
 502
 503                refresh_cache(REFRESH_QUIET);
 504
 505                if (unmerged_cache()) {
 506                        error(_("you need to resolve your current index first"));
 507                        return 1;
 508                }
 509
 510                /* 2-way merge to the new branch */
 511                topts.initial_checkout = is_cache_unborn();
 512                topts.update = 1;
 513                topts.merge = 1;
 514                topts.gently = opts->merge && old_branch_info->commit;
 515                topts.verbose_update = opts->show_progress;
 516                topts.fn = twoway_merge;
 517                if (opts->overwrite_ignore) {
 518                        topts.dir = xcalloc(1, sizeof(*topts.dir));
 519                        topts.dir->flags |= DIR_SHOW_IGNORED;
 520                        setup_standard_excludes(topts.dir);
 521                }
 522                tree = parse_tree_indirect(old_branch_info->commit ?
 523                                           &old_branch_info->commit->object.oid :
 524                                           the_hash_algo->empty_tree);
 525                init_tree_desc(&trees[0], tree->buffer, tree->size);
 526                tree = parse_tree_indirect(&new_branch_info->commit->object.oid);
 527                init_tree_desc(&trees[1], tree->buffer, tree->size);
 528
 529                ret = unpack_trees(2, trees, &topts);
 530                if (ret == -1) {
 531                        /*
 532                         * Unpack couldn't do a trivial merge; either
 533                         * give up or do a real merge, depending on
 534                         * whether the merge flag was used.
 535                         */
 536                        struct tree *result;
 537                        struct tree *work;
 538                        struct merge_options o;
 539                        if (!opts->merge)
 540                                return 1;
 541
 542                        /*
 543                         * Without old_branch_info->commit, the below is the same as
 544                         * the two-tree unpack we already tried and failed.
 545                         */
 546                        if (!old_branch_info->commit)
 547                                return 1;
 548
 549                        /* Do more real merge */
 550
 551                        /*
 552                         * We update the index fully, then write the
 553                         * tree from the index, then merge the new
 554                         * branch with the current tree, with the old
 555                         * branch as the base. Then we reset the index
 556                         * (but not the working tree) to the new
 557                         * branch, leaving the working tree as the
 558                         * merged version, but skipping unmerged
 559                         * entries in the index.
 560                         */
 561
 562                        add_files_to_cache(NULL, NULL, 0);
 563                        /*
 564                         * NEEDSWORK: carrying over local changes
 565                         * when branches have different end-of-line
 566                         * normalization (or clean+smudge rules) is
 567                         * a pain; plumb in an option to set
 568                         * o.renormalize?
 569                         */
 570                        init_merge_options(&o);
 571                        o.verbosity = 0;
 572                        work = write_tree_from_memory(&o);
 573
 574                        ret = reset_tree(get_commit_tree(new_branch_info->commit),
 575                                         opts, 1,
 576                                         writeout_error);
 577                        if (ret)
 578                                return ret;
 579                        o.ancestor = old_branch_info->name;
 580                        o.branch1 = new_branch_info->name;
 581                        o.branch2 = "local";
 582                        ret = merge_trees(&o,
 583                                          get_commit_tree(new_branch_info->commit),
 584                                          work,
 585                                          get_commit_tree(old_branch_info->commit),
 586                                          &result);
 587                        if (ret < 0)
 588                                exit(128);
 589                        ret = reset_tree(get_commit_tree(new_branch_info->commit),
 590                                         opts, 0,
 591                                         writeout_error);
 592                        strbuf_release(&o.obuf);
 593                        if (ret)
 594                                return ret;
 595                }
 596        }
 597
 598        if (!active_cache_tree)
 599                active_cache_tree = cache_tree();
 600
 601        if (!cache_tree_fully_valid(active_cache_tree))
 602                cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR);
 603
 604        if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
 605                die(_("unable to write new index file"));
 606
 607        if (!opts->force && !opts->quiet)
 608                show_local_changes(&new_branch_info->commit->object, &opts->diff_options);
 609
 610        return 0;
 611}
 612
 613static void report_tracking(struct branch_info *new_branch_info)
 614{
 615        struct strbuf sb = STRBUF_INIT;
 616        struct branch *branch = branch_get(new_branch_info->name);
 617
 618        if (!format_tracking_info(branch, &sb, AHEAD_BEHIND_FULL))
 619                return;
 620        fputs(sb.buf, stdout);
 621        strbuf_release(&sb);
 622}
 623
 624static void update_refs_for_switch(const struct checkout_opts *opts,
 625                                   struct branch_info *old_branch_info,
 626                                   struct branch_info *new_branch_info)
 627{
 628        struct strbuf msg = STRBUF_INIT;
 629        const char *old_desc, *reflog_msg;
 630        if (opts->new_branch) {
 631                if (opts->new_orphan_branch) {
 632                        char *refname;
 633
 634                        refname = mkpathdup("refs/heads/%s", opts->new_orphan_branch);
 635                        if (opts->new_branch_log &&
 636                            !should_autocreate_reflog(refname)) {
 637                                int ret;
 638                                struct strbuf err = STRBUF_INIT;
 639
 640                                ret = safe_create_reflog(refname, 1, &err);
 641                                if (ret) {
 642                                        fprintf(stderr, _("Can not do reflog for '%s': %s\n"),
 643                                                opts->new_orphan_branch, err.buf);
 644                                        strbuf_release(&err);
 645                                        free(refname);
 646                                        return;
 647                                }
 648                                strbuf_release(&err);
 649                        }
 650                        free(refname);
 651                }
 652                else
 653                        create_branch(opts->new_branch, new_branch_info->name,
 654                                      opts->new_branch_force ? 1 : 0,
 655                                      opts->new_branch_force ? 1 : 0,
 656                                      opts->new_branch_log,
 657                                      opts->quiet,
 658                                      opts->track);
 659                new_branch_info->name = opts->new_branch;
 660                setup_branch_path(new_branch_info);
 661        }
 662
 663        old_desc = old_branch_info->name;
 664        if (!old_desc && old_branch_info->commit)
 665                old_desc = oid_to_hex(&old_branch_info->commit->object.oid);
 666
 667        reflog_msg = getenv("GIT_REFLOG_ACTION");
 668        if (!reflog_msg)
 669                strbuf_addf(&msg, "checkout: moving from %s to %s",
 670                        old_desc ? old_desc : "(invalid)", new_branch_info->name);
 671        else
 672                strbuf_insert(&msg, 0, reflog_msg, strlen(reflog_msg));
 673
 674        if (!strcmp(new_branch_info->name, "HEAD") && !new_branch_info->path && !opts->force_detach) {
 675                /* Nothing to do. */
 676        } else if (opts->force_detach || !new_branch_info->path) {      /* No longer on any branch. */
 677                update_ref(msg.buf, "HEAD", &new_branch_info->commit->object.oid, NULL,
 678                           REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR);
 679                if (!opts->quiet) {
 680                        if (old_branch_info->path &&
 681                            advice_detached_head && !opts->force_detach)
 682                                detach_advice(new_branch_info->name);
 683                        describe_detached_head(_("HEAD is now at"), new_branch_info->commit);
 684                }
 685        } else if (new_branch_info->path) {     /* Switch branches. */
 686                if (create_symref("HEAD", new_branch_info->path, msg.buf) < 0)
 687                        die(_("unable to update HEAD"));
 688                if (!opts->quiet) {
 689                        if (old_branch_info->path && !strcmp(new_branch_info->path, old_branch_info->path)) {
 690                                if (opts->new_branch_force)
 691                                        fprintf(stderr, _("Reset branch '%s'\n"),
 692                                                new_branch_info->name);
 693                                else
 694                                        fprintf(stderr, _("Already on '%s'\n"),
 695                                                new_branch_info->name);
 696                        } else if (opts->new_branch) {
 697                                if (opts->branch_exists)
 698                                        fprintf(stderr, _("Switched to and reset branch '%s'\n"), new_branch_info->name);
 699                                else
 700                                        fprintf(stderr, _("Switched to a new branch '%s'\n"), new_branch_info->name);
 701                        } else {
 702                                fprintf(stderr, _("Switched to branch '%s'\n"),
 703                                        new_branch_info->name);
 704                        }
 705                }
 706                if (old_branch_info->path && old_branch_info->name) {
 707                        if (!ref_exists(old_branch_info->path) && reflog_exists(old_branch_info->path))
 708                                delete_reflog(old_branch_info->path);
 709                }
 710        }
 711        remove_branch_state();
 712        strbuf_release(&msg);
 713        if (!opts->quiet &&
 714            (new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name, "HEAD"))))
 715                report_tracking(new_branch_info);
 716}
 717
 718static int add_pending_uninteresting_ref(const char *refname,
 719                                         const struct object_id *oid,
 720                                         int flags, void *cb_data)
 721{
 722        add_pending_oid(cb_data, refname, oid, UNINTERESTING);
 723        return 0;
 724}
 725
 726static void describe_one_orphan(struct strbuf *sb, struct commit *commit)
 727{
 728        strbuf_addstr(sb, "  ");
 729        strbuf_add_unique_abbrev(sb, &commit->object.oid, DEFAULT_ABBREV);
 730        strbuf_addch(sb, ' ');
 731        if (!parse_commit(commit))
 732                pp_commit_easy(CMIT_FMT_ONELINE, commit, sb);
 733        strbuf_addch(sb, '\n');
 734}
 735
 736#define ORPHAN_CUTOFF 4
 737static void suggest_reattach(struct commit *commit, struct rev_info *revs)
 738{
 739        struct commit *c, *last = NULL;
 740        struct strbuf sb = STRBUF_INIT;
 741        int lost = 0;
 742        while ((c = get_revision(revs)) != NULL) {
 743                if (lost < ORPHAN_CUTOFF)
 744                        describe_one_orphan(&sb, c);
 745                last = c;
 746                lost++;
 747        }
 748        if (ORPHAN_CUTOFF < lost) {
 749                int more = lost - ORPHAN_CUTOFF;
 750                if (more == 1)
 751                        describe_one_orphan(&sb, last);
 752                else
 753                        strbuf_addf(&sb, _(" ... and %d more.\n"), more);
 754        }
 755
 756        fprintf(stderr,
 757                Q_(
 758                /* The singular version */
 759                "Warning: you are leaving %d commit behind, "
 760                "not connected to\n"
 761                "any of your branches:\n\n"
 762                "%s\n",
 763                /* The plural version */
 764                "Warning: you are leaving %d commits behind, "
 765                "not connected to\n"
 766                "any of your branches:\n\n"
 767                "%s\n",
 768                /* Give ngettext() the count */
 769                lost),
 770                lost,
 771                sb.buf);
 772        strbuf_release(&sb);
 773
 774        if (advice_detached_head)
 775                fprintf(stderr,
 776                        Q_(
 777                        /* The singular version */
 778                        "If you want to keep it by creating a new branch, "
 779                        "this may be a good time\nto do so with:\n\n"
 780                        " git branch <new-branch-name> %s\n\n",
 781                        /* The plural version */
 782                        "If you want to keep them by creating a new branch, "
 783                        "this may be a good time\nto do so with:\n\n"
 784                        " git branch <new-branch-name> %s\n\n",
 785                        /* Give ngettext() the count */
 786                        lost),
 787                        find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV));
 788}
 789
 790/*
 791 * We are about to leave commit that was at the tip of a detached
 792 * HEAD.  If it is not reachable from any ref, this is the last chance
 793 * for the user to do so without resorting to reflog.
 794 */
 795static void orphaned_commit_warning(struct commit *old_commit, struct commit *new_commit)
 796{
 797        struct rev_info revs;
 798        struct object *object = &old_commit->object;
 799
 800        init_revisions(&revs, NULL);
 801        setup_revisions(0, NULL, &revs, NULL);
 802
 803        object->flags &= ~UNINTERESTING;
 804        add_pending_object(&revs, object, oid_to_hex(&object->oid));
 805
 806        for_each_ref(add_pending_uninteresting_ref, &revs);
 807        add_pending_oid(&revs, "HEAD", &new_commit->object.oid, UNINTERESTING);
 808
 809        if (prepare_revision_walk(&revs))
 810                die(_("internal error in revision walk"));
 811        if (!(old_commit->object.flags & UNINTERESTING))
 812                suggest_reattach(old_commit, &revs);
 813        else
 814                describe_detached_head(_("Previous HEAD position was"), old_commit);
 815
 816        /* Clean up objects used, as they will be reused. */
 817        clear_commit_marks_all(ALL_REV_FLAGS);
 818}
 819
 820static int switch_branches(const struct checkout_opts *opts,
 821                           struct branch_info *new_branch_info)
 822{
 823        int ret = 0;
 824        struct branch_info old_branch_info;
 825        void *path_to_free;
 826        struct object_id rev;
 827        int flag, writeout_error = 0;
 828        memset(&old_branch_info, 0, sizeof(old_branch_info));
 829        old_branch_info.path = path_to_free = resolve_refdup("HEAD", 0, &rev, &flag);
 830        if (old_branch_info.path)
 831                old_branch_info.commit = lookup_commit_reference_gently(&rev, 1);
 832        if (!(flag & REF_ISSYMREF))
 833                old_branch_info.path = NULL;
 834
 835        if (old_branch_info.path)
 836                skip_prefix(old_branch_info.path, "refs/heads/", &old_branch_info.name);
 837
 838        if (!new_branch_info->name) {
 839                new_branch_info->name = "HEAD";
 840                new_branch_info->commit = old_branch_info.commit;
 841                if (!new_branch_info->commit)
 842                        die(_("You are on a branch yet to be born"));
 843                parse_commit_or_die(new_branch_info->commit);
 844        }
 845
 846        ret = merge_working_tree(opts, &old_branch_info, new_branch_info, &writeout_error);
 847        if (ret) {
 848                free(path_to_free);
 849                return ret;
 850        }
 851
 852        if (!opts->quiet && !old_branch_info.path && old_branch_info.commit && new_branch_info->commit != old_branch_info.commit)
 853                orphaned_commit_warning(old_branch_info.commit, new_branch_info->commit);
 854
 855        update_refs_for_switch(opts, &old_branch_info, new_branch_info);
 856
 857        ret = post_checkout_hook(old_branch_info.commit, new_branch_info->commit, 1);
 858        free(path_to_free);
 859        return ret || writeout_error;
 860}
 861
 862static int git_checkout_config(const char *var, const char *value, void *cb)
 863{
 864        if (!strcmp(var, "diff.ignoresubmodules")) {
 865                struct checkout_opts *opts = cb;
 866                handle_ignore_submodules_arg(&opts->diff_options, value);
 867                return 0;
 868        }
 869
 870        if (starts_with(var, "submodule."))
 871                return git_default_submodule_config(var, value, NULL);
 872
 873        return git_xmerge_config(var, value, NULL);
 874}
 875
 876static int parse_branchname_arg(int argc, const char **argv,
 877                                int dwim_new_local_branch_ok,
 878                                struct branch_info *new_branch_info,
 879                                struct checkout_opts *opts,
 880                                struct object_id *rev)
 881{
 882        struct tree **source_tree = &opts->source_tree;
 883        const char **new_branch = &opts->new_branch;
 884        int argcount = 0;
 885        struct object_id branch_rev;
 886        const char *arg;
 887        int dash_dash_pos;
 888        int has_dash_dash = 0;
 889        int i;
 890
 891        /*
 892         * case 1: git checkout <ref> -- [<paths>]
 893         *
 894         *   <ref> must be a valid tree, everything after the '--' must be
 895         *   a path.
 896         *
 897         * case 2: git checkout -- [<paths>]
 898         *
 899         *   everything after the '--' must be paths.
 900         *
 901         * case 3: git checkout <something> [--]
 902         *
 903         *   (a) If <something> is a commit, that is to
 904         *       switch to the branch or detach HEAD at it.  As a special case,
 905         *       if <something> is A...B (missing A or B means HEAD but you can
 906         *       omit at most one side), and if there is a unique merge base
 907         *       between A and B, A...B names that merge base.
 908         *
 909         *   (b) If <something> is _not_ a commit, either "--" is present
 910         *       or <something> is not a path, no -t or -b was given, and
 911         *       and there is a tracking branch whose name is <something>
 912         *       in one and only one remote, then this is a short-hand to
 913         *       fork local <something> from that remote-tracking branch.
 914         *
 915         *   (c) Otherwise, if "--" is present, treat it like case (1).
 916         *
 917         *   (d) Otherwise :
 918         *       - if it's a reference, treat it like case (1)
 919         *       - else if it's a path, treat it like case (2)
 920         *       - else: fail.
 921         *
 922         * case 4: git checkout <something> <paths>
 923         *
 924         *   The first argument must not be ambiguous.
 925         *   - If it's *only* a reference, treat it like case (1).
 926         *   - If it's only a path, treat it like case (2).
 927         *   - else: fail.
 928         *
 929         */
 930        if (!argc)
 931                return 0;
 932
 933        arg = argv[0];
 934        dash_dash_pos = -1;
 935        for (i = 0; i < argc; i++) {
 936                if (!strcmp(argv[i], "--")) {
 937                        dash_dash_pos = i;
 938                        break;
 939                }
 940        }
 941        if (dash_dash_pos == 0)
 942                return 1; /* case (2) */
 943        else if (dash_dash_pos == 1)
 944                has_dash_dash = 1; /* case (3) or (1) */
 945        else if (dash_dash_pos >= 2)
 946                die(_("only one reference expected, %d given."), dash_dash_pos);
 947
 948        if (!strcmp(arg, "-"))
 949                arg = "@{-1}";
 950
 951        if (get_oid_mb(arg, rev)) {
 952                /*
 953                 * Either case (3) or (4), with <something> not being
 954                 * a commit, or an attempt to use case (1) with an
 955                 * invalid ref.
 956                 *
 957                 * It's likely an error, but we need to find out if
 958                 * we should auto-create the branch, case (3).(b).
 959                 */
 960                int recover_with_dwim = dwim_new_local_branch_ok;
 961
 962                if (!has_dash_dash &&
 963                    (check_filename(opts->prefix, arg) || !no_wildcard(arg)))
 964                        recover_with_dwim = 0;
 965                /*
 966                 * Accept "git checkout foo" and "git checkout foo --"
 967                 * as candidates for dwim.
 968                 */
 969                if (!(argc == 1 && !has_dash_dash) &&
 970                    !(argc == 2 && has_dash_dash))
 971                        recover_with_dwim = 0;
 972
 973                if (recover_with_dwim) {
 974                        const char *remote = unique_tracking_name(arg, rev);
 975                        if (remote) {
 976                                *new_branch = arg;
 977                                arg = remote;
 978                                /* DWIMmed to create local branch, case (3).(b) */
 979                        } else {
 980                                recover_with_dwim = 0;
 981                        }
 982                }
 983
 984                if (!recover_with_dwim) {
 985                        if (has_dash_dash)
 986                                die(_("invalid reference: %s"), arg);
 987                        return argcount;
 988                }
 989        }
 990
 991        /* we can't end up being in (2) anymore, eat the argument */
 992        argcount++;
 993        argv++;
 994        argc--;
 995
 996        new_branch_info->name = arg;
 997        setup_branch_path(new_branch_info);
 998
 999        if (!check_refname_format(new_branch_info->path, 0) &&
1000            !read_ref(new_branch_info->path, &branch_rev))
1001                oidcpy(rev, &branch_rev);
1002        else
1003                new_branch_info->path = NULL; /* not an existing branch */
1004
1005        new_branch_info->commit = lookup_commit_reference_gently(rev, 1);
1006        if (!new_branch_info->commit) {
1007                /* not a commit */
1008                *source_tree = parse_tree_indirect(rev);
1009        } else {
1010                parse_commit_or_die(new_branch_info->commit);
1011                *source_tree = get_commit_tree(new_branch_info->commit);
1012        }
1013
1014        if (!*source_tree)                   /* case (1): want a tree */
1015                die(_("reference is not a tree: %s"), arg);
1016        if (!has_dash_dash) {   /* case (3).(d) -> (1) */
1017                /*
1018                 * Do not complain the most common case
1019                 *      git checkout branch
1020                 * even if there happen to be a file called 'branch';
1021                 * it would be extremely annoying.
1022                 */
1023                if (argc)
1024                        verify_non_filename(opts->prefix, arg);
1025        } else {
1026                argcount++;
1027                argv++;
1028                argc--;
1029        }
1030
1031        return argcount;
1032}
1033
1034static int switch_unborn_to_new_branch(const struct checkout_opts *opts)
1035{
1036        int status;
1037        struct strbuf branch_ref = STRBUF_INIT;
1038
1039        if (!opts->new_branch)
1040                die(_("You are on a branch yet to be born"));
1041        strbuf_addf(&branch_ref, "refs/heads/%s", opts->new_branch);
1042        status = create_symref("HEAD", branch_ref.buf, "checkout -b");
1043        strbuf_release(&branch_ref);
1044        if (!opts->quiet)
1045                fprintf(stderr, _("Switched to a new branch '%s'\n"),
1046                        opts->new_branch);
1047        return status;
1048}
1049
1050static int checkout_branch(struct checkout_opts *opts,
1051                           struct branch_info *new_branch_info)
1052{
1053        if (opts->pathspec.nr)
1054                die(_("paths cannot be used with switching branches"));
1055
1056        if (opts->patch_mode)
1057                die(_("'%s' cannot be used with switching branches"),
1058                    "--patch");
1059
1060        if (opts->writeout_stage)
1061                die(_("'%s' cannot be used with switching branches"),
1062                    "--ours/--theirs");
1063
1064        if (opts->force && opts->merge)
1065                die(_("'%s' cannot be used with '%s'"), "-f", "-m");
1066
1067        if (opts->force_detach && opts->new_branch)
1068                die(_("'%s' cannot be used with '%s'"),
1069                    "--detach", "-b/-B/--orphan");
1070
1071        if (opts->new_orphan_branch) {
1072                if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1073                        die(_("'%s' cannot be used with '%s'"), "--orphan", "-t");
1074        } else if (opts->force_detach) {
1075                if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1076                        die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
1077        } else if (opts->track == BRANCH_TRACK_UNSPECIFIED)
1078                opts->track = git_branch_track;
1079
1080        if (new_branch_info->name && !new_branch_info->commit)
1081                die(_("Cannot switch branch to a non-commit '%s'"),
1082                    new_branch_info->name);
1083
1084        if (new_branch_info->path && !opts->force_detach && !opts->new_branch &&
1085            !opts->ignore_other_worktrees) {
1086                int flag;
1087                char *head_ref = resolve_refdup("HEAD", 0, NULL, &flag);
1088                if (head_ref &&
1089                    (!(flag & REF_ISSYMREF) || strcmp(head_ref, new_branch_info->path)))
1090                        die_if_checked_out(new_branch_info->path, 1);
1091                free(head_ref);
1092        }
1093
1094        if (!new_branch_info->commit && opts->new_branch) {
1095                struct object_id rev;
1096                int flag;
1097
1098                if (!read_ref_full("HEAD", 0, &rev, &flag) &&
1099                    (flag & REF_ISSYMREF) && is_null_oid(&rev))
1100                        return switch_unborn_to_new_branch(opts);
1101        }
1102        return switch_branches(opts, new_branch_info);
1103}
1104
1105int cmd_checkout(int argc, const char **argv, const char *prefix)
1106{
1107        struct checkout_opts opts;
1108        struct branch_info new_branch_info;
1109        char *conflict_style = NULL;
1110        int dwim_new_local_branch = 1;
1111        struct option options[] = {
1112                OPT__QUIET(&opts.quiet, N_("suppress progress reporting")),
1113                OPT_STRING('b', NULL, &opts.new_branch, N_("branch"),
1114                           N_("create and checkout a new branch")),
1115                OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"),
1116                           N_("create/reset and checkout a branch")),
1117                OPT_BOOL('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")),
1118                OPT_BOOL(0, "detach", &opts.force_detach, N_("detach HEAD at named commit")),
1119                OPT_SET_INT('t', "track",  &opts.track, N_("set upstream info for new branch"),
1120                        BRANCH_TRACK_EXPLICIT),
1121                OPT_STRING(0, "orphan", &opts.new_orphan_branch, N_("new-branch"), N_("new unparented branch")),
1122                OPT_SET_INT('2', "ours", &opts.writeout_stage, N_("checkout our version for unmerged files"),
1123                            2),
1124                OPT_SET_INT('3', "theirs", &opts.writeout_stage, N_("checkout their version for unmerged files"),
1125                            3),
1126                OPT__FORCE(&opts.force, N_("force checkout (throw away local modifications)"),
1127                           PARSE_OPT_NOCOMPLETE),
1128                OPT_BOOL('m', "merge", &opts.merge, N_("perform a 3-way merge with the new branch")),
1129                OPT_BOOL_F(0, "overwrite-ignore", &opts.overwrite_ignore,
1130                           N_("update ignored files (default)"),
1131                           PARSE_OPT_NOCOMPLETE),
1132                OPT_STRING(0, "conflict", &conflict_style, N_("style"),
1133                           N_("conflict style (merge or diff3)")),
1134                OPT_BOOL('p', "patch", &opts.patch_mode, N_("select hunks interactively")),
1135                OPT_BOOL(0, "ignore-skip-worktree-bits", &opts.ignore_skipworktree,
1136                         N_("do not limit pathspecs to sparse entries only")),
1137                OPT_HIDDEN_BOOL(0, "guess", &dwim_new_local_branch,
1138                                N_("second guess 'git checkout <no-such-branch>'")),
1139                OPT_BOOL(0, "ignore-other-worktrees", &opts.ignore_other_worktrees,
1140                         N_("do not check if another worktree is holding the given ref")),
1141                { OPTION_CALLBACK, 0, "recurse-submodules", NULL,
1142                            "checkout", "control recursive updating of submodules",
1143                            PARSE_OPT_OPTARG, option_parse_recurse_submodules_worktree_updater },
1144                OPT_BOOL(0, "progress", &opts.show_progress, N_("force progress reporting")),
1145                OPT_END(),
1146        };
1147
1148        memset(&opts, 0, sizeof(opts));
1149        memset(&new_branch_info, 0, sizeof(new_branch_info));
1150        opts.overwrite_ignore = 1;
1151        opts.prefix = prefix;
1152        opts.show_progress = -1;
1153
1154        git_config(git_checkout_config, &opts);
1155
1156        opts.track = BRANCH_TRACK_UNSPECIFIED;
1157
1158        argc = parse_options(argc, argv, prefix, options, checkout_usage,
1159                             PARSE_OPT_KEEP_DASHDASH);
1160
1161        if (opts.show_progress < 0) {
1162                if (opts.quiet)
1163                        opts.show_progress = 0;
1164                else
1165                        opts.show_progress = isatty(2);
1166        }
1167
1168        if (conflict_style) {
1169                opts.merge = 1; /* implied */
1170                git_xmerge_config("merge.conflictstyle", conflict_style, NULL);
1171        }
1172
1173        if ((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) > 1)
1174                die(_("-b, -B and --orphan are mutually exclusive"));
1175
1176        /*
1177         * From here on, new_branch will contain the branch to be checked out,
1178         * and new_branch_force and new_orphan_branch will tell us which one of
1179         * -b/-B/--orphan is being used.
1180         */
1181        if (opts.new_branch_force)
1182                opts.new_branch = opts.new_branch_force;
1183
1184        if (opts.new_orphan_branch)
1185                opts.new_branch = opts.new_orphan_branch;
1186
1187        /* --track without -b/-B/--orphan should DWIM */
1188        if (opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {
1189                const char *argv0 = argv[0];
1190                if (!argc || !strcmp(argv0, "--"))
1191                        die (_("--track needs a branch name"));
1192                skip_prefix(argv0, "refs/", &argv0);
1193                skip_prefix(argv0, "remotes/", &argv0);
1194                argv0 = strchr(argv0, '/');
1195                if (!argv0 || !argv0[1])
1196                        die (_("Missing branch name; try -b"));
1197                opts.new_branch = argv0 + 1;
1198        }
1199
1200        /*
1201         * Extract branch name from command line arguments, so
1202         * all that is left is pathspecs.
1203         *
1204         * Handle
1205         *
1206         *  1) git checkout <tree> -- [<paths>]
1207         *  2) git checkout -- [<paths>]
1208         *  3) git checkout <something> [<paths>]
1209         *
1210         * including "last branch" syntax and DWIM-ery for names of
1211         * remote branches, erroring out for invalid or ambiguous cases.
1212         */
1213        if (argc) {
1214                struct object_id rev;
1215                int dwim_ok =
1216                        !opts.patch_mode &&
1217                        dwim_new_local_branch &&
1218                        opts.track == BRANCH_TRACK_UNSPECIFIED &&
1219                        !opts.new_branch;
1220                int n = parse_branchname_arg(argc, argv, dwim_ok,
1221                                             &new_branch_info, &opts, &rev);
1222                argv += n;
1223                argc -= n;
1224        }
1225
1226        if (argc) {
1227                parse_pathspec(&opts.pathspec, 0,
1228                               opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN : 0,
1229                               prefix, argv);
1230
1231                if (!opts.pathspec.nr)
1232                        die(_("invalid path specification"));
1233
1234                /*
1235                 * Try to give more helpful suggestion.
1236                 * new_branch && argc > 1 will be caught later.
1237                 */
1238                if (opts.new_branch && argc == 1)
1239                        die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),
1240                                argv[0], opts.new_branch);
1241
1242                if (opts.force_detach)
1243                        die(_("git checkout: --detach does not take a path argument '%s'"),
1244                            argv[0]);
1245
1246                if (1 < !!opts.writeout_stage + !!opts.force + !!opts.merge)
1247                        die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
1248                              "checking out of the index."));
1249        }
1250
1251        if (opts.new_branch) {
1252                struct strbuf buf = STRBUF_INIT;
1253
1254                if (opts.new_branch_force)
1255                        opts.branch_exists = validate_branchname(opts.new_branch, &buf);
1256                else
1257                        opts.branch_exists =
1258                                validate_new_branchname(opts.new_branch, &buf, 0);
1259                strbuf_release(&buf);
1260        }
1261
1262        UNLEAK(opts);
1263        if (opts.patch_mode || opts.pathspec.nr)
1264                return checkout_paths(&opts, new_branch_info.name);
1265        else
1266                return checkout_branch(&opts, &new_branch_info);
1267}