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