1#include"builtin.h" 2#include"lockfile.h" 3#include"parse-options.h" 4#include"refs.h" 5#include"commit.h" 6#include"tree.h" 7#include"tree-walk.h" 8#include"cache-tree.h" 9#include"unpack-trees.h" 10#include"dir.h" 11#include"run-command.h" 12#include"merge-recursive.h" 13#include"branch.h" 14#include"diff.h" 15#include"revision.h" 16#include"remote.h" 17#include"blob.h" 18#include"xdiff-interface.h" 19#include"ll-merge.h" 20#include"resolve-undo.h" 21#include"submodule.h" 22#include"argv-array.h" 23#include"sigchain.h" 24 25static const char*const checkout_usage[] = { 26N_("git checkout [options] <branch>"), 27N_("git checkout [options] [<branch>] -- <file>..."), 28 NULL, 29}; 30 31struct checkout_opts { 32int patch_mode; 33int quiet; 34int merge; 35int force; 36int force_detach; 37int writeout_stage; 38int overwrite_ignore; 39int ignore_skipworktree; 40int ignore_other_worktrees; 41 42const char*new_branch; 43const char*new_branch_force; 44const char*new_orphan_branch; 45int new_branch_log; 46enum branch_track track; 47struct diff_options diff_options; 48 49int branch_exists; 50const char*prefix; 51struct pathspec pathspec; 52struct tree *source_tree; 53 54const char*new_worktree; 55const char**saved_argv; 56int new_worktree_mode; 57}; 58 59static intpost_checkout_hook(struct commit *old,struct commit *new, 60int changed) 61{ 62returnrun_hook_le(NULL,"post-checkout", 63sha1_to_hex(old ? old->object.sha1 : null_sha1), 64sha1_to_hex(new?new->object.sha1 : null_sha1), 65 changed ?"1":"0", NULL); 66/* "new" can be NULL when checking out from the index before 67 a commit exists. */ 68 69} 70 71static intupdate_some(const unsigned char*sha1,const char*base,int baselen, 72const char*pathname,unsigned mode,int stage,void*context) 73{ 74int len; 75struct cache_entry *ce; 76 77if(S_ISDIR(mode)) 78return READ_TREE_RECURSIVE; 79 80 len = baselen +strlen(pathname); 81 ce =xcalloc(1,cache_entry_size(len)); 82hashcpy(ce->sha1, sha1); 83memcpy(ce->name, base, baselen); 84memcpy(ce->name + baselen, pathname, len - baselen); 85 ce->ce_flags =create_ce_flags(0) | CE_UPDATE; 86 ce->ce_namelen = len; 87 ce->ce_mode =create_ce_mode(mode); 88add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 89return0; 90} 91 92static intread_tree_some(struct tree *tree,const struct pathspec *pathspec) 93{ 94read_tree_recursive(tree,"",0,0, pathspec, update_some, NULL); 95 96/* update the index with the given tree's info 97 * for all args, expanding wildcards, and exit 98 * with any non-zero return code. 99 */ 100return0; 101} 102 103static intskip_same_name(const struct cache_entry *ce,int pos) 104{ 105while(++pos < active_nr && 106!strcmp(active_cache[pos]->name, ce->name)) 107;/* skip */ 108return pos; 109} 110 111static intcheck_stage(int stage,const struct cache_entry *ce,int pos) 112{ 113while(pos < active_nr && 114!strcmp(active_cache[pos]->name, ce->name)) { 115if(ce_stage(active_cache[pos]) == stage) 116return0; 117 pos++; 118} 119if(stage ==2) 120returnerror(_("path '%s' does not have our version"), ce->name); 121else 122returnerror(_("path '%s' does not have their version"), ce->name); 123} 124 125static intcheck_stages(unsigned stages,const struct cache_entry *ce,int pos) 126{ 127unsigned seen =0; 128const char*name = ce->name; 129 130while(pos < active_nr) { 131 ce = active_cache[pos]; 132if(strcmp(name, ce->name)) 133break; 134 seen |= (1<<ce_stage(ce)); 135 pos++; 136} 137if((stages & seen) != stages) 138returnerror(_("path '%s' does not have all necessary versions"), 139 name); 140return0; 141} 142 143static intcheckout_stage(int stage,struct cache_entry *ce,int pos, 144struct checkout *state) 145{ 146while(pos < active_nr && 147!strcmp(active_cache[pos]->name, ce->name)) { 148if(ce_stage(active_cache[pos]) == stage) 149returncheckout_entry(active_cache[pos], state, NULL); 150 pos++; 151} 152if(stage ==2) 153returnerror(_("path '%s' does not have our version"), ce->name); 154else 155returnerror(_("path '%s' does not have their version"), ce->name); 156} 157 158static intcheckout_merged(int pos,struct checkout *state) 159{ 160struct cache_entry *ce = active_cache[pos]; 161const char*path = ce->name; 162 mmfile_t ancestor, ours, theirs; 163int status; 164unsigned char sha1[20]; 165 mmbuffer_t result_buf; 166unsigned char threeway[3][20]; 167unsigned mode =0; 168 169memset(threeway,0,sizeof(threeway)); 170while(pos < active_nr) { 171int stage; 172 stage =ce_stage(ce); 173if(!stage ||strcmp(path, ce->name)) 174break; 175hashcpy(threeway[stage -1], ce->sha1); 176if(stage ==2) 177 mode =create_ce_mode(ce->ce_mode); 178 pos++; 179 ce = active_cache[pos]; 180} 181if(is_null_sha1(threeway[1]) ||is_null_sha1(threeway[2])) 182returnerror(_("path '%s' does not have necessary versions"), path); 183 184read_mmblob(&ancestor, threeway[0]); 185read_mmblob(&ours, threeway[1]); 186read_mmblob(&theirs, threeway[2]); 187 188/* 189 * NEEDSWORK: re-create conflicts from merges with 190 * merge.renormalize set, too 191 */ 192 status =ll_merge(&result_buf, path, &ancestor,"base", 193&ours,"ours", &theirs,"theirs", NULL); 194free(ancestor.ptr); 195free(ours.ptr); 196free(theirs.ptr); 197if(status <0|| !result_buf.ptr) { 198free(result_buf.ptr); 199returnerror(_("path '%s': cannot merge"), path); 200} 201 202/* 203 * NEEDSWORK: 204 * There is absolutely no reason to write this as a blob object 205 * and create a phony cache entry just to leak. This hack is 206 * primarily to get to the write_entry() machinery that massages 207 * the contents to work-tree format and writes out which only 208 * allows it for a cache entry. The code in write_entry() needs 209 * to be refactored to allow us to feed a <buffer, size, mode> 210 * instead of a cache entry. Such a refactoring would help 211 * merge_recursive as well (it also writes the merge result to the 212 * object database even when it may contain conflicts). 213 */ 214if(write_sha1_file(result_buf.ptr, result_buf.size, 215 blob_type, sha1)) 216die(_("Unable to add merge result for '%s'"), path); 217 ce =make_cache_entry(mode, sha1, path,2,0); 218if(!ce) 219die(_("make_cache_entry failed for path '%s'"), path); 220 status =checkout_entry(ce, state, NULL); 221return status; 222} 223 224static intcheckout_paths(const struct checkout_opts *opts, 225const char*revision) 226{ 227int pos; 228struct checkout state; 229static char*ps_matched; 230unsigned char rev[20]; 231int flag; 232struct commit *head; 233int errs =0; 234struct lock_file *lock_file; 235 236if(opts->track != BRANCH_TRACK_UNSPECIFIED) 237die(_("'%s' cannot be used with updating paths"),"--track"); 238 239if(opts->new_branch_log) 240die(_("'%s' cannot be used with updating paths"),"-l"); 241 242if(opts->force && opts->patch_mode) 243die(_("'%s' cannot be used with updating paths"),"-f"); 244 245if(opts->force_detach) 246die(_("'%s' cannot be used with updating paths"),"--detach"); 247 248if(opts->merge && opts->patch_mode) 249die(_("'%s' cannot be used with%s"),"--merge","--patch"); 250 251if(opts->force && opts->merge) 252die(_("'%s' cannot be used with%s"),"-f","-m"); 253 254if(opts->new_branch) 255die(_("Cannot update paths and switch to branch '%s' at the same time."), 256 opts->new_branch); 257 258if(opts->new_worktree) 259die(_("'%s' cannot be used with updating paths"),"--to"); 260 261if(opts->patch_mode) 262returnrun_add_interactive(revision,"--patch=checkout", 263&opts->pathspec); 264 265 lock_file =xcalloc(1,sizeof(struct lock_file)); 266 267hold_locked_index(lock_file,1); 268if(read_cache_preload(&opts->pathspec) <0) 269returnerror(_("corrupt index file")); 270 271if(opts->source_tree) 272read_tree_some(opts->source_tree, &opts->pathspec); 273 274 ps_matched =xcalloc(1, opts->pathspec.nr); 275 276/* 277 * Make sure all pathspecs participated in locating the paths 278 * to be checked out. 279 */ 280for(pos =0; pos < active_nr; pos++) { 281struct cache_entry *ce = active_cache[pos]; 282 ce->ce_flags &= ~CE_MATCHED; 283if(!opts->ignore_skipworktree &&ce_skip_worktree(ce)) 284continue; 285if(opts->source_tree && !(ce->ce_flags & CE_UPDATE)) 286/* 287 * "git checkout tree-ish -- path", but this entry 288 * is in the original index; it will not be checked 289 * out to the working tree and it does not matter 290 * if pathspec matched this entry. We will not do 291 * anything to this entry at all. 292 */ 293continue; 294/* 295 * Either this entry came from the tree-ish we are 296 * checking the paths out of, or we are checking out 297 * of the index. 298 * 299 * If it comes from the tree-ish, we already know it 300 * matches the pathspec and could just stamp 301 * CE_MATCHED to it from update_some(). But we still 302 * need ps_matched and read_tree_recursive (and 303 * eventually tree_entry_interesting) cannot fill 304 * ps_matched yet. Once it can, we can avoid calling 305 * match_pathspec() for _all_ entries when 306 * opts->source_tree != NULL. 307 */ 308if(ce_path_match(ce, &opts->pathspec, ps_matched)) 309 ce->ce_flags |= CE_MATCHED; 310} 311 312if(report_path_error(ps_matched, &opts->pathspec, opts->prefix)) { 313free(ps_matched); 314return1; 315} 316free(ps_matched); 317 318/* "checkout -m path" to recreate conflicted state */ 319if(opts->merge) 320unmerge_marked_index(&the_index); 321 322/* Any unmerged paths? */ 323for(pos =0; pos < active_nr; pos++) { 324const struct cache_entry *ce = active_cache[pos]; 325if(ce->ce_flags & CE_MATCHED) { 326if(!ce_stage(ce)) 327continue; 328if(opts->force) { 329warning(_("path '%s' is unmerged"), ce->name); 330}else if(opts->writeout_stage) { 331 errs |=check_stage(opts->writeout_stage, ce, pos); 332}else if(opts->merge) { 333 errs |=check_stages((1<<2) | (1<<3), ce, pos); 334}else{ 335 errs =1; 336error(_("path '%s' is unmerged"), ce->name); 337} 338 pos =skip_same_name(ce, pos) -1; 339} 340} 341if(errs) 342return1; 343 344/* Now we are committed to check them out */ 345memset(&state,0,sizeof(state)); 346 state.force =1; 347 state.refresh_cache =1; 348 state.istate = &the_index; 349for(pos =0; pos < active_nr; pos++) { 350struct cache_entry *ce = active_cache[pos]; 351if(ce->ce_flags & CE_MATCHED) { 352if(!ce_stage(ce)) { 353 errs |=checkout_entry(ce, &state, NULL); 354continue; 355} 356if(opts->writeout_stage) 357 errs |=checkout_stage(opts->writeout_stage, ce, pos, &state); 358else if(opts->merge) 359 errs |=checkout_merged(pos, &state); 360 pos =skip_same_name(ce, pos) -1; 361} 362} 363 364if(write_locked_index(&the_index, lock_file, COMMIT_LOCK)) 365die(_("unable to write new index file")); 366 367read_ref_full("HEAD",0, rev, &flag); 368 head =lookup_commit_reference_gently(rev,1); 369 370 errs |=post_checkout_hook(head, head,0); 371return errs; 372} 373 374static voidshow_local_changes(struct object *head, 375const struct diff_options *opts) 376{ 377struct rev_info rev; 378/* I think we want full paths, even if we're in a subdirectory. */ 379init_revisions(&rev, NULL); 380 rev.diffopt.flags = opts->flags; 381 rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS; 382diff_setup_done(&rev.diffopt); 383add_pending_object(&rev, head, NULL); 384run_diff_index(&rev,0); 385} 386 387static voiddescribe_detached_head(const char*msg,struct commit *commit) 388{ 389struct strbuf sb = STRBUF_INIT; 390if(!parse_commit(commit)) 391pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb); 392fprintf(stderr,"%s %s...%s\n", msg, 393find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV), sb.buf); 394strbuf_release(&sb); 395} 396 397static intreset_tree(struct tree *tree,const struct checkout_opts *o, 398int worktree,int*writeout_error) 399{ 400struct unpack_trees_options opts; 401struct tree_desc tree_desc; 402 403memset(&opts,0,sizeof(opts)); 404 opts.head_idx = -1; 405 opts.update = worktree; 406 opts.skip_unmerged = !worktree; 407 opts.reset =1; 408 opts.merge =1; 409 opts.fn = oneway_merge; 410 opts.verbose_update = !o->quiet &&isatty(2); 411 opts.src_index = &the_index; 412 opts.dst_index = &the_index; 413parse_tree(tree); 414init_tree_desc(&tree_desc, tree->buffer, tree->size); 415switch(unpack_trees(1, &tree_desc, &opts)) { 416case-2: 417*writeout_error =1; 418/* 419 * We return 0 nevertheless, as the index is all right 420 * and more importantly we have made best efforts to 421 * update paths in the work tree, and we cannot revert 422 * them. 423 */ 424case0: 425return0; 426default: 427return128; 428} 429} 430 431struct branch_info { 432const char*name;/* The short name used */ 433const char*path;/* The full name of a real branch */ 434struct commit *commit;/* The named commit */ 435/* 436 * if not null the branch is detached because it's already 437 * checked out in this checkout 438 */ 439char*checkout; 440}; 441 442static voidsetup_branch_path(struct branch_info *branch) 443{ 444struct strbuf buf = STRBUF_INIT; 445 446strbuf_branchname(&buf, branch->name); 447if(strcmp(buf.buf, branch->name)) 448 branch->name =xstrdup(buf.buf); 449strbuf_splice(&buf,0,0,"refs/heads/",11); 450 branch->path =strbuf_detach(&buf, NULL); 451} 452 453static intmerge_working_tree(const struct checkout_opts *opts, 454struct branch_info *old, 455struct branch_info *new, 456int*writeout_error) 457{ 458int ret; 459struct lock_file *lock_file =xcalloc(1,sizeof(struct lock_file)); 460 461hold_locked_index(lock_file,1); 462if(read_cache_preload(NULL) <0) 463returnerror(_("corrupt index file")); 464 465resolve_undo_clear(); 466if(opts->force) { 467 ret =reset_tree(new->commit->tree, opts,1, writeout_error); 468if(ret) 469return ret; 470}else{ 471struct tree_desc trees[2]; 472struct tree *tree; 473struct unpack_trees_options topts; 474 475memset(&topts,0,sizeof(topts)); 476 topts.head_idx = -1; 477 topts.src_index = &the_index; 478 topts.dst_index = &the_index; 479 480setup_unpack_trees_porcelain(&topts,"checkout"); 481 482refresh_cache(REFRESH_QUIET); 483 484if(unmerged_cache()) { 485error(_("you need to resolve your current index first")); 486return1; 487} 488 489/* 2-way merge to the new branch */ 490 topts.initial_checkout =is_cache_unborn(); 491 topts.update =1; 492 topts.merge =1; 493 topts.gently = opts->merge && old->commit; 494 topts.verbose_update = !opts->quiet &&isatty(2); 495 topts.fn = twoway_merge; 496if(opts->overwrite_ignore) { 497 topts.dir =xcalloc(1,sizeof(*topts.dir)); 498 topts.dir->flags |= DIR_SHOW_IGNORED; 499setup_standard_excludes(topts.dir); 500} 501 tree =parse_tree_indirect(old->commit && !opts->new_worktree_mode ? 502 old->commit->object.sha1 : 503 EMPTY_TREE_SHA1_BIN); 504init_tree_desc(&trees[0], tree->buffer, tree->size); 505 tree =parse_tree_indirect(new->commit->object.sha1); 506init_tree_desc(&trees[1], tree->buffer, tree->size); 507 508 ret =unpack_trees(2, trees, &topts); 509if(ret == -1) { 510/* 511 * Unpack couldn't do a trivial merge; either 512 * give up or do a real merge, depending on 513 * whether the merge flag was used. 514 */ 515struct tree *result; 516struct tree *work; 517struct merge_options o; 518if(!opts->merge) 519return1; 520 521/* 522 * Without old->commit, the below is the same as 523 * the two-tree unpack we already tried and failed. 524 */ 525if(!old->commit) 526return1; 527 528/* Do more real merge */ 529 530/* 531 * We update the index fully, then write the 532 * tree from the index, then merge the new 533 * branch with the current tree, with the old 534 * branch as the base. Then we reset the index 535 * (but not the working tree) to the new 536 * branch, leaving the working tree as the 537 * merged version, but skipping unmerged 538 * entries in the index. 539 */ 540 541add_files_to_cache(NULL, NULL,0); 542/* 543 * NEEDSWORK: carrying over local changes 544 * when branches have different end-of-line 545 * normalization (or clean+smudge rules) is 546 * a pain; plumb in an option to set 547 * o.renormalize? 548 */ 549init_merge_options(&o); 550 o.verbosity =0; 551 work =write_tree_from_memory(&o); 552 553 ret =reset_tree(new->commit->tree, opts,1, 554 writeout_error); 555if(ret) 556return ret; 557 o.ancestor = old->name; 558 o.branch1 =new->name; 559 o.branch2 ="local"; 560merge_trees(&o,new->commit->tree, work, 561 old->commit->tree, &result); 562 ret =reset_tree(new->commit->tree, opts,0, 563 writeout_error); 564if(ret) 565return ret; 566} 567} 568 569if(!active_cache_tree) 570 active_cache_tree =cache_tree(); 571 572if(!cache_tree_fully_valid(active_cache_tree)) 573cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR); 574 575if(write_locked_index(&the_index, lock_file, COMMIT_LOCK)) 576die(_("unable to write new index file")); 577 578if(!opts->force && !opts->quiet) 579show_local_changes(&new->commit->object, &opts->diff_options); 580 581return0; 582} 583 584static voidreport_tracking(struct branch_info *new) 585{ 586struct strbuf sb = STRBUF_INIT; 587struct branch *branch =branch_get(new->name); 588 589if(!format_tracking_info(branch, &sb)) 590return; 591fputs(sb.buf, stdout); 592strbuf_release(&sb); 593} 594 595static voidupdate_refs_for_switch(const struct checkout_opts *opts, 596struct branch_info *old, 597struct branch_info *new) 598{ 599struct strbuf msg = STRBUF_INIT; 600const char*old_desc, *reflog_msg; 601if(opts->new_branch) { 602if(opts->new_orphan_branch) { 603if(opts->new_branch_log && !log_all_ref_updates) { 604int temp; 605struct strbuf log_file = STRBUF_INIT; 606int ret; 607const char*ref_name; 608 609 ref_name =mkpath("refs/heads/%s", opts->new_orphan_branch); 610 temp = log_all_ref_updates; 611 log_all_ref_updates =1; 612 ret =log_ref_setup(ref_name, &log_file); 613 log_all_ref_updates = temp; 614strbuf_release(&log_file); 615if(ret) { 616fprintf(stderr,_("Can not do reflog for '%s'\n"), 617 opts->new_orphan_branch); 618return; 619} 620} 621} 622else 623create_branch(old->name, opts->new_branch,new->name, 624 opts->new_branch_force ?1:0, 625 opts->new_branch_log, 626 opts->new_branch_force ?1:0, 627 opts->quiet, 628 opts->track); 629new->name = opts->new_branch; 630setup_branch_path(new); 631} 632 633 old_desc = old->name; 634if(!old_desc && old->commit) 635 old_desc =sha1_to_hex(old->commit->object.sha1); 636 637 reflog_msg =getenv("GIT_REFLOG_ACTION"); 638if(!reflog_msg) 639strbuf_addf(&msg,"checkout: moving from%sto%s", 640 old_desc ? old_desc :"(invalid)",new->name); 641else 642strbuf_insert(&msg,0, reflog_msg,strlen(reflog_msg)); 643 644if(!strcmp(new->name,"HEAD") && !new->path && !opts->force_detach) { 645/* Nothing to do. */ 646}else if(opts->force_detach || !new->path) {/* No longer on any branch. */ 647update_ref(msg.buf,"HEAD",new->commit->object.sha1, NULL, 648 REF_NODEREF, UPDATE_REFS_DIE_ON_ERR); 649if(!opts->quiet) { 650if(old->path && advice_detached_head) 651detach_advice(new->name); 652describe_detached_head(_("HEAD is now at"),new->commit); 653} 654}else if(new->path) {/* Switch branches. */ 655create_symref("HEAD",new->path, msg.buf); 656if(!opts->quiet) { 657if(old->path && !strcmp(new->path, old->path)) { 658if(opts->new_branch_force) 659fprintf(stderr,_("Reset branch '%s'\n"), 660new->name); 661else 662fprintf(stderr,_("Already on '%s'\n"), 663new->name); 664}else if(opts->new_branch) { 665if(opts->branch_exists) 666fprintf(stderr,_("Switched to and reset branch '%s'\n"),new->name); 667else 668fprintf(stderr,_("Switched to a new branch '%s'\n"),new->name); 669}else{ 670fprintf(stderr,_("Switched to branch '%s'\n"), 671new->name); 672} 673} 674if(old->path && old->name) { 675if(!ref_exists(old->path) &&reflog_exists(old->path)) 676delete_reflog(old->path); 677} 678} 679remove_branch_state(); 680strbuf_release(&msg); 681if(!opts->quiet && 682(new->path || (!opts->force_detach && !strcmp(new->name,"HEAD")))) 683report_tracking(new); 684} 685 686static intadd_pending_uninteresting_ref(const char*refname, 687const unsigned char*sha1, 688int flags,void*cb_data) 689{ 690add_pending_sha1(cb_data, refname, sha1, UNINTERESTING); 691return0; 692} 693 694static voiddescribe_one_orphan(struct strbuf *sb,struct commit *commit) 695{ 696strbuf_addstr(sb," "); 697strbuf_addstr(sb, 698find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV)); 699strbuf_addch(sb,' '); 700if(!parse_commit(commit)) 701pp_commit_easy(CMIT_FMT_ONELINE, commit, sb); 702strbuf_addch(sb,'\n'); 703} 704 705#define ORPHAN_CUTOFF 4 706static voidsuggest_reattach(struct commit *commit,struct rev_info *revs) 707{ 708struct commit *c, *last = NULL; 709struct strbuf sb = STRBUF_INIT; 710int lost =0; 711while((c =get_revision(revs)) != NULL) { 712if(lost < ORPHAN_CUTOFF) 713describe_one_orphan(&sb, c); 714 last = c; 715 lost++; 716} 717if(ORPHAN_CUTOFF < lost) { 718int more = lost - ORPHAN_CUTOFF; 719if(more ==1) 720describe_one_orphan(&sb, last); 721else 722strbuf_addf(&sb,_(" ... and%dmore.\n"), more); 723} 724 725fprintf(stderr, 726Q_( 727/* The singular version */ 728"Warning: you are leaving%dcommit behind, " 729"not connected to\n" 730"any of your branches:\n\n" 731"%s\n", 732/* The plural version */ 733"Warning: you are leaving%dcommits behind, " 734"not connected to\n" 735"any of your branches:\n\n" 736"%s\n", 737/* Give ngettext() the count */ 738 lost), 739 lost, 740 sb.buf); 741strbuf_release(&sb); 742 743if(advice_detached_head) 744fprintf(stderr, 745_( 746"If you want to keep them by creating a new branch, " 747"this may be a good time\nto do so with:\n\n" 748" git branch new_branch_name%s\n\n"), 749find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV)); 750} 751 752/* 753 * We are about to leave commit that was at the tip of a detached 754 * HEAD. If it is not reachable from any ref, this is the last chance 755 * for the user to do so without resorting to reflog. 756 */ 757static voidorphaned_commit_warning(struct commit *old,struct commit *new) 758{ 759struct rev_info revs; 760struct object *object = &old->object; 761struct object_array refs; 762 763init_revisions(&revs, NULL); 764setup_revisions(0, NULL, &revs, NULL); 765 766 object->flags &= ~UNINTERESTING; 767add_pending_object(&revs, object,sha1_to_hex(object->sha1)); 768 769for_each_ref(add_pending_uninteresting_ref, &revs); 770add_pending_sha1(&revs,"HEAD",new->object.sha1, UNINTERESTING); 771 772 refs = revs.pending; 773 revs.leak_pending =1; 774 775if(prepare_revision_walk(&revs)) 776die(_("internal error in revision walk")); 777if(!(old->object.flags & UNINTERESTING)) 778suggest_reattach(old, &revs); 779else 780describe_detached_head(_("Previous HEAD position was"), old); 781 782clear_commit_marks_for_object_array(&refs, ALL_REV_FLAGS); 783free(refs.objects); 784} 785 786static intswitch_branches(const struct checkout_opts *opts, 787struct branch_info *new) 788{ 789int ret =0; 790struct branch_info old; 791void*path_to_free; 792unsigned char rev[20]; 793int flag, writeout_error =0; 794memset(&old,0,sizeof(old)); 795 old.path = path_to_free =resolve_refdup("HEAD",0, rev, &flag); 796 old.commit =lookup_commit_reference_gently(rev,1); 797if(!(flag & REF_ISSYMREF)) 798 old.path = NULL; 799 800if(old.path) 801skip_prefix(old.path,"refs/heads/", &old.name); 802 803if(!new->name) { 804new->name ="HEAD"; 805new->commit = old.commit; 806if(!new->commit) 807die(_("You are on a branch yet to be born")); 808parse_commit_or_die(new->commit); 809} 810 811 ret =merge_working_tree(opts, &old,new, &writeout_error); 812if(ret) { 813free(path_to_free); 814return ret; 815} 816 817if(!opts->quiet && !old.path && old.commit && 818new->commit != old.commit && !opts->new_worktree_mode) 819orphaned_commit_warning(old.commit,new->commit); 820 821update_refs_for_switch(opts, &old,new); 822 823 ret =post_checkout_hook(old.commit,new->commit,1); 824free(path_to_free); 825return ret || writeout_error; 826} 827 828static char*junk_work_tree; 829static char*junk_git_dir; 830static int is_junk; 831static pid_t junk_pid; 832 833static voidremove_junk(void) 834{ 835struct strbuf sb = STRBUF_INIT; 836if(!is_junk ||getpid() != junk_pid) 837return; 838if(junk_git_dir) { 839strbuf_addstr(&sb, junk_git_dir); 840remove_dir_recursively(&sb,0); 841strbuf_reset(&sb); 842} 843if(junk_work_tree) { 844strbuf_addstr(&sb, junk_work_tree); 845remove_dir_recursively(&sb,0); 846} 847strbuf_release(&sb); 848} 849 850static voidremove_junk_on_signal(int signo) 851{ 852remove_junk(); 853sigchain_pop(signo); 854raise(signo); 855} 856 857static intprepare_linked_checkout(const struct checkout_opts *opts) 858{ 859struct strbuf sb_git = STRBUF_INIT, sb_repo = STRBUF_INIT; 860struct strbuf sb = STRBUF_INIT; 861const char*path = opts->new_worktree, *name; 862struct stat st; 863struct child_process cp; 864int counter =0, len, ret; 865unsigned char rev[20]; 866 867if(file_exists(path) && !is_empty_dir(path)) 868die(_("'%s' already exists"), path); 869 870 len =strlen(path); 871while(len &&is_dir_sep(path[len -1])) 872 len--; 873 874for(name = path + len -1; name > path; name--) 875if(is_dir_sep(*name)) { 876 name++; 877break; 878} 879strbuf_addstr(&sb_repo, 880git_path("worktrees/%.*s", (int)(path + len - name), name)); 881 len = sb_repo.len; 882if(safe_create_leading_directories_const(sb_repo.buf)) 883die_errno(_("could not create leading directories of '%s'"), 884 sb_repo.buf); 885while(!stat(sb_repo.buf, &st)) { 886 counter++; 887strbuf_setlen(&sb_repo, len); 888strbuf_addf(&sb_repo,"%d", counter); 889} 890 name =strrchr(sb_repo.buf,'/') +1; 891 892 junk_pid =getpid(); 893atexit(remove_junk); 894sigchain_push_common(remove_junk_on_signal); 895 896if(mkdir(sb_repo.buf,0777)) 897die_errno(_("could not create directory of '%s'"), sb_repo.buf); 898 junk_git_dir =xstrdup(sb_repo.buf); 899 is_junk =1; 900 901/* 902 * lock the incomplete repo so prune won't delete it, unlock 903 * after the preparation is over. 904 */ 905strbuf_addf(&sb,"%s/locked", sb_repo.buf); 906write_file(sb.buf,1,"initializing\n"); 907 908strbuf_addf(&sb_git,"%s/.git", path); 909if(safe_create_leading_directories_const(sb_git.buf)) 910die_errno(_("could not create leading directories of '%s'"), 911 sb_git.buf); 912 junk_work_tree =xstrdup(path); 913 914strbuf_reset(&sb); 915strbuf_addf(&sb,"%s/gitdir", sb_repo.buf); 916write_file(sb.buf,1,"%s\n",real_path(sb_git.buf)); 917write_file(sb_git.buf,1,"gitdir:%s/worktrees/%s\n", 918real_path(get_git_common_dir()), name); 919/* 920 * This is to keep resolve_ref() happy. We need a valid HEAD 921 * or is_git_directory() will reject the directory. Moreover, HEAD 922 * in the new worktree must resolve to the same value as HEAD in 923 * the current tree since the command invoked to populate the new 924 * worktree will be handed the branch/ref specified by the user. 925 * For instance, if the user asks for the new worktree to be based 926 * at HEAD~5, then the resolved HEAD~5 in the new worktree must 927 * match the resolved HEAD~5 in the current tree in order to match 928 * the user's expectation. 929 */ 930if(!resolve_ref_unsafe("HEAD",0, rev, NULL)) 931die(_("unable to resolve HEAD")); 932strbuf_reset(&sb); 933strbuf_addf(&sb,"%s/HEAD", sb_repo.buf); 934write_file(sb.buf,1,"%s\n",sha1_to_hex(rev)); 935strbuf_reset(&sb); 936strbuf_addf(&sb,"%s/commondir", sb_repo.buf); 937write_file(sb.buf,1,"../..\n"); 938 939fprintf_ln(stderr,_("Enter%s(identifier%s)"), path, name); 940 941setenv("GIT_CHECKOUT_NEW_WORKTREE","1",1); 942setenv(GIT_DIR_ENVIRONMENT, sb_git.buf,1); 943setenv(GIT_WORK_TREE_ENVIRONMENT, path,1); 944memset(&cp,0,sizeof(cp)); 945 cp.git_cmd =1; 946 cp.argv = opts->saved_argv; 947 ret =run_command(&cp); 948if(!ret) { 949 is_junk =0; 950free(junk_work_tree); 951free(junk_git_dir); 952 junk_work_tree = NULL; 953 junk_git_dir = NULL; 954} 955strbuf_reset(&sb); 956strbuf_addf(&sb,"%s/locked", sb_repo.buf); 957unlink_or_warn(sb.buf); 958strbuf_release(&sb); 959strbuf_release(&sb_repo); 960strbuf_release(&sb_git); 961return ret; 962} 963 964static intgit_checkout_config(const char*var,const char*value,void*cb) 965{ 966if(!strcmp(var,"diff.ignoresubmodules")) { 967struct checkout_opts *opts = cb; 968handle_ignore_submodules_arg(&opts->diff_options, value); 969return0; 970} 971 972if(starts_with(var,"submodule.")) 973returnparse_submodule_config_option(var, value); 974 975returngit_xmerge_config(var, value, NULL); 976} 977 978struct tracking_name_data { 979/* const */char*src_ref; 980char*dst_ref; 981unsigned char*dst_sha1; 982int unique; 983}; 984 985static intcheck_tracking_name(struct remote *remote,void*cb_data) 986{ 987struct tracking_name_data *cb = cb_data; 988struct refspec query; 989memset(&query,0,sizeof(struct refspec)); 990 query.src = cb->src_ref; 991if(remote_find_tracking(remote, &query) || 992get_sha1(query.dst, cb->dst_sha1)) { 993free(query.dst); 994return0; 995} 996if(cb->dst_ref) { 997free(query.dst); 998 cb->unique =0; 999return0;1000}1001 cb->dst_ref = query.dst;1002return0;1003}10041005static const char*unique_tracking_name(const char*name,unsigned char*sha1)1006{1007struct tracking_name_data cb_data = { NULL, NULL, NULL,1};1008char src_ref[PATH_MAX];1009snprintf(src_ref, PATH_MAX,"refs/heads/%s", name);1010 cb_data.src_ref = src_ref;1011 cb_data.dst_sha1 = sha1;1012for_each_remote(check_tracking_name, &cb_data);1013if(cb_data.unique)1014return cb_data.dst_ref;1015free(cb_data.dst_ref);1016return NULL;1017}10181019static voidcheck_linked_checkout(struct branch_info *new,const char*id)1020{1021struct strbuf sb = STRBUF_INIT;1022struct strbuf path = STRBUF_INIT;1023struct strbuf gitdir = STRBUF_INIT;1024const char*start, *end;10251026if(id)1027strbuf_addf(&path,"%s/worktrees/%s/HEAD",get_git_common_dir(), id);1028else1029strbuf_addf(&path,"%s/HEAD",get_git_common_dir());10301031if(strbuf_read_file(&sb, path.buf,0) <0||1032!skip_prefix(sb.buf,"ref:", &start))1033goto done;1034while(isspace(*start))1035 start++;1036 end = start;1037while(*end && !isspace(*end))1038 end++;1039if(strncmp(start,new->path, end - start) ||new->path[end - start] !='\0')1040goto done;1041if(id) {1042strbuf_reset(&path);1043strbuf_addf(&path,"%s/worktrees/%s/gitdir",get_git_common_dir(), id);1044if(strbuf_read_file(&gitdir, path.buf,0) <=0)1045goto done;1046strbuf_rtrim(&gitdir);1047}else1048strbuf_addstr(&gitdir,get_git_common_dir());1049die(_("'%s' is already checked out at '%s'"),new->name, gitdir.buf);1050done:1051strbuf_release(&path);1052strbuf_release(&sb);1053strbuf_release(&gitdir);1054}10551056static voidcheck_linked_checkouts(struct branch_info *new)1057{1058struct strbuf path = STRBUF_INIT;1059DIR*dir;1060struct dirent *d;10611062strbuf_addf(&path,"%s/worktrees",get_git_common_dir());1063if((dir =opendir(path.buf)) == NULL) {1064strbuf_release(&path);1065return;1066}10671068/*1069 * $GIT_COMMON_DIR/HEAD is practically outside1070 * $GIT_DIR so resolve_ref_unsafe() won't work (it1071 * uses git_path). Parse the ref ourselves.1072 */1073check_linked_checkout(new, NULL);10741075while((d =readdir(dir)) != NULL) {1076if(!strcmp(d->d_name,".") || !strcmp(d->d_name,".."))1077continue;1078check_linked_checkout(new, d->d_name);1079}1080strbuf_release(&path);1081closedir(dir);1082}10831084static intparse_branchname_arg(int argc,const char**argv,1085int dwim_new_local_branch_ok,1086struct branch_info *new,1087struct checkout_opts *opts,1088unsigned char rev[20])1089{1090struct tree **source_tree = &opts->source_tree;1091const char**new_branch = &opts->new_branch;1092int argcount =0;1093unsigned char branch_rev[20];1094const char*arg;1095int dash_dash_pos;1096int has_dash_dash =0;1097int i;10981099/*1100 * case 1: git checkout <ref> -- [<paths>]1101 *1102 * <ref> must be a valid tree, everything after the '--' must be1103 * a path.1104 *1105 * case 2: git checkout -- [<paths>]1106 *1107 * everything after the '--' must be paths.1108 *1109 * case 3: git checkout <something> [--]1110 *1111 * (a) If <something> is a commit, that is to1112 * switch to the branch or detach HEAD at it. As a special case,1113 * if <something> is A...B (missing A or B means HEAD but you can1114 * omit at most one side), and if there is a unique merge base1115 * between A and B, A...B names that merge base.1116 *1117 * (b) If <something> is _not_ a commit, either "--" is present1118 * or <something> is not a path, no -t or -b was given, and1119 * and there is a tracking branch whose name is <something>1120 * in one and only one remote, then this is a short-hand to1121 * fork local <something> from that remote-tracking branch.1122 *1123 * (c) Otherwise, if "--" is present, treat it like case (1).1124 *1125 * (d) Otherwise :1126 * - if it's a reference, treat it like case (1)1127 * - else if it's a path, treat it like case (2)1128 * - else: fail.1129 *1130 * case 4: git checkout <something> <paths>1131 *1132 * The first argument must not be ambiguous.1133 * - If it's *only* a reference, treat it like case (1).1134 * - If it's only a path, treat it like case (2).1135 * - else: fail.1136 *1137 */1138if(!argc)1139return0;11401141 arg = argv[0];1142 dash_dash_pos = -1;1143for(i =0; i < argc; i++) {1144if(!strcmp(argv[i],"--")) {1145 dash_dash_pos = i;1146break;1147}1148}1149if(dash_dash_pos ==0)1150return1;/* case (2) */1151else if(dash_dash_pos ==1)1152 has_dash_dash =1;/* case (3) or (1) */1153else if(dash_dash_pos >=2)1154die(_("only one reference expected,%dgiven."), dash_dash_pos);11551156if(!strcmp(arg,"-"))1157 arg ="@{-1}";11581159if(get_sha1_mb(arg, rev)) {1160/*1161 * Either case (3) or (4), with <something> not being1162 * a commit, or an attempt to use case (1) with an1163 * invalid ref.1164 *1165 * It's likely an error, but we need to find out if1166 * we should auto-create the branch, case (3).(b).1167 */1168int recover_with_dwim = dwim_new_local_branch_ok;11691170if(check_filename(NULL, arg) && !has_dash_dash)1171 recover_with_dwim =0;1172/*1173 * Accept "git checkout foo" and "git checkout foo --"1174 * as candidates for dwim.1175 */1176if(!(argc ==1&& !has_dash_dash) &&1177!(argc ==2&& has_dash_dash))1178 recover_with_dwim =0;11791180if(recover_with_dwim) {1181const char*remote =unique_tracking_name(arg, rev);1182if(remote) {1183*new_branch = arg;1184 arg = remote;1185/* DWIMmed to create local branch, case (3).(b) */1186}else{1187 recover_with_dwim =0;1188}1189}11901191if(!recover_with_dwim) {1192if(has_dash_dash)1193die(_("invalid reference:%s"), arg);1194return argcount;1195}1196}11971198/* we can't end up being in (2) anymore, eat the argument */1199 argcount++;1200 argv++;1201 argc--;12021203new->name = arg;1204setup_branch_path(new);12051206if(!check_refname_format(new->path,0) &&1207!read_ref(new->path, branch_rev))1208hashcpy(rev, branch_rev);1209else1210new->path = NULL;/* not an existing branch */12111212new->commit =lookup_commit_reference_gently(rev,1);1213if(!new->commit) {1214/* not a commit */1215*source_tree =parse_tree_indirect(rev);1216}else{1217parse_commit_or_die(new->commit);1218*source_tree =new->commit->tree;1219}12201221if(!*source_tree)/* case (1): want a tree */1222die(_("reference is not a tree:%s"), arg);1223if(!has_dash_dash) {/* case (3).(d) -> (1) */1224/*1225 * Do not complain the most common case1226 * git checkout branch1227 * even if there happen to be a file called 'branch';1228 * it would be extremely annoying.1229 */1230if(argc)1231verify_non_filename(NULL, arg);1232}else{1233 argcount++;1234 argv++;1235 argc--;1236}12371238return argcount;1239}12401241static intswitch_unborn_to_new_branch(const struct checkout_opts *opts)1242{1243int status;1244struct strbuf branch_ref = STRBUF_INIT;12451246if(!opts->new_branch)1247die(_("You are on a branch yet to be born"));1248strbuf_addf(&branch_ref,"refs/heads/%s", opts->new_branch);1249 status =create_symref("HEAD", branch_ref.buf,"checkout -b");1250strbuf_release(&branch_ref);1251if(!opts->quiet)1252fprintf(stderr,_("Switched to a new branch '%s'\n"),1253 opts->new_branch);1254return status;1255}12561257static intcheckout_branch(struct checkout_opts *opts,1258struct branch_info *new)1259{1260if(opts->pathspec.nr)1261die(_("paths cannot be used with switching branches"));12621263if(opts->patch_mode)1264die(_("'%s' cannot be used with switching branches"),1265"--patch");12661267if(opts->writeout_stage)1268die(_("'%s' cannot be used with switching branches"),1269"--ours/--theirs");12701271if(opts->force && opts->merge)1272die(_("'%s' cannot be used with '%s'"),"-f","-m");12731274if(opts->force_detach && opts->new_branch)1275die(_("'%s' cannot be used with '%s'"),1276"--detach","-b/-B/--orphan");12771278if(opts->new_orphan_branch) {1279if(opts->track != BRANCH_TRACK_UNSPECIFIED)1280die(_("'%s' cannot be used with '%s'"),"--orphan","-t");1281}else if(opts->force_detach) {1282if(opts->track != BRANCH_TRACK_UNSPECIFIED)1283die(_("'%s' cannot be used with '%s'"),"--detach","-t");1284}else if(opts->track == BRANCH_TRACK_UNSPECIFIED)1285 opts->track = git_branch_track;12861287if(new->name && !new->commit)1288die(_("Cannot switch branch to a non-commit '%s'"),1289new->name);12901291if(new->path && !opts->force_detach && !opts->new_branch) {1292unsigned char sha1[20];1293int flag;1294char*head_ref =resolve_refdup("HEAD",0, sha1, &flag);1295if(head_ref &&1296(!(flag & REF_ISSYMREF) ||strcmp(head_ref,new->path)) &&1297!opts->ignore_other_worktrees)1298check_linked_checkouts(new);1299free(head_ref);1300}13011302if(opts->new_worktree) {1303if(!new->commit)1304die(_("no branch specified"));1305returnprepare_linked_checkout(opts);1306}13071308if(!new->commit && opts->new_branch) {1309unsigned char rev[20];1310int flag;13111312if(!read_ref_full("HEAD",0, rev, &flag) &&1313(flag & REF_ISSYMREF) &&is_null_sha1(rev))1314returnswitch_unborn_to_new_branch(opts);1315}1316returnswitch_branches(opts,new);1317}13181319intcmd_checkout(int argc,const char**argv,const char*prefix)1320{1321struct checkout_opts opts;1322struct branch_info new;1323char*conflict_style = NULL;1324int dwim_new_local_branch =1;1325struct option options[] = {1326OPT__QUIET(&opts.quiet,N_("suppress progress reporting")),1327OPT_STRING('b', NULL, &opts.new_branch,N_("branch"),1328N_("create and checkout a new branch")),1329OPT_STRING('B', NULL, &opts.new_branch_force,N_("branch"),1330N_("create/reset and checkout a branch")),1331OPT_BOOL('l', NULL, &opts.new_branch_log,N_("create reflog for new branch")),1332OPT_BOOL(0,"detach", &opts.force_detach,N_("detach the HEAD at named commit")),1333OPT_SET_INT('t',"track", &opts.track,N_("set upstream info for new branch"),1334 BRANCH_TRACK_EXPLICIT),1335OPT_STRING(0,"orphan", &opts.new_orphan_branch,N_("new-branch"),N_("new unparented branch")),1336OPT_SET_INT('2',"ours", &opts.writeout_stage,N_("checkout our version for unmerged files"),13372),1338OPT_SET_INT('3',"theirs", &opts.writeout_stage,N_("checkout their version for unmerged files"),13393),1340OPT__FORCE(&opts.force,N_("force checkout (throw away local modifications)")),1341OPT_BOOL('m',"merge", &opts.merge,N_("perform a 3-way merge with the new branch")),1342OPT_BOOL(0,"overwrite-ignore", &opts.overwrite_ignore,N_("update ignored files (default)")),1343OPT_STRING(0,"conflict", &conflict_style,N_("style"),1344N_("conflict style (merge or diff3)")),1345OPT_BOOL('p',"patch", &opts.patch_mode,N_("select hunks interactively")),1346OPT_BOOL(0,"ignore-skip-worktree-bits", &opts.ignore_skipworktree,1347N_("do not limit pathspecs to sparse entries only")),1348OPT_HIDDEN_BOOL(0,"guess", &dwim_new_local_branch,1349N_("second guess 'git checkout no-such-branch'")),1350OPT_FILENAME(0,"to", &opts.new_worktree,1351N_("check a branch out in a separate working directory")),1352OPT_BOOL(0,"ignore-other-worktrees", &opts.ignore_other_worktrees,1353N_("do not check if another worktree is holding the given ref")),1354OPT_END(),1355};13561357memset(&opts,0,sizeof(opts));1358memset(&new,0,sizeof(new));1359 opts.overwrite_ignore =1;1360 opts.prefix = prefix;13611362 opts.saved_argv =xmalloc(sizeof(const char*) * (argc +2));1363memcpy(opts.saved_argv, argv,sizeof(const char*) * (argc +1));13641365gitmodules_config();1366git_config(git_checkout_config, &opts);13671368 opts.track = BRANCH_TRACK_UNSPECIFIED;13691370 argc =parse_options(argc, argv, prefix, options, checkout_usage,1371 PARSE_OPT_KEEP_DASHDASH);13721373/* recursive execution from checkout_new_worktree() */1374 opts.new_worktree_mode =getenv("GIT_CHECKOUT_NEW_WORKTREE") != NULL;1375if(opts.new_worktree_mode)1376 opts.new_worktree = NULL;13771378if(!opts.new_worktree)1379setup_work_tree();13801381if(conflict_style) {1382 opts.merge =1;/* implied */1383git_xmerge_config("merge.conflictstyle", conflict_style, NULL);1384}13851386if((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) >1)1387die(_("-b, -B and --orphan are mutually exclusive"));13881389/*1390 * From here on, new_branch will contain the branch to be checked out,1391 * and new_branch_force and new_orphan_branch will tell us which one of1392 * -b/-B/--orphan is being used.1393 */1394if(opts.new_branch_force)1395 opts.new_branch = opts.new_branch_force;13961397if(opts.new_orphan_branch)1398 opts.new_branch = opts.new_orphan_branch;13991400/* --track without -b/-B/--orphan should DWIM */1401if(opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {1402const char*argv0 = argv[0];1403if(!argc || !strcmp(argv0,"--"))1404die(_("--track needs a branch name"));1405skip_prefix(argv0,"refs/", &argv0);1406skip_prefix(argv0,"remotes/", &argv0);1407 argv0 =strchr(argv0,'/');1408if(!argv0 || !argv0[1])1409die(_("Missing branch name; try -b"));1410 opts.new_branch = argv0 +1;1411}14121413/*1414 * Extract branch name from command line arguments, so1415 * all that is left is pathspecs.1416 *1417 * Handle1418 *1419 * 1) git checkout <tree> -- [<paths>]1420 * 2) git checkout -- [<paths>]1421 * 3) git checkout <something> [<paths>]1422 *1423 * including "last branch" syntax and DWIM-ery for names of1424 * remote branches, erroring out for invalid or ambiguous cases.1425 */1426if(argc) {1427unsigned char rev[20];1428int dwim_ok =1429!opts.patch_mode &&1430 dwim_new_local_branch &&1431 opts.track == BRANCH_TRACK_UNSPECIFIED &&1432!opts.new_branch;1433int n =parse_branchname_arg(argc, argv, dwim_ok,1434&new, &opts, rev);1435 argv += n;1436 argc -= n;1437}14381439if(argc) {1440parse_pathspec(&opts.pathspec,0,1441 opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN :0,1442 prefix, argv);14431444if(!opts.pathspec.nr)1445die(_("invalid path specification"));14461447/*1448 * Try to give more helpful suggestion.1449 * new_branch && argc > 1 will be caught later.1450 */1451if(opts.new_branch && argc ==1)1452die(_("Cannot update paths and switch to branch '%s' at the same time.\n"1453"Did you intend to checkout '%s' which can not be resolved as commit?"),1454 opts.new_branch, argv[0]);14551456if(opts.force_detach)1457die(_("git checkout: --detach does not take a path argument '%s'"),1458 argv[0]);14591460if(1< !!opts.writeout_stage + !!opts.force + !!opts.merge)1461die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"1462"checking out of the index."));1463}14641465if(opts.new_branch) {1466struct strbuf buf = STRBUF_INIT;14671468 opts.branch_exists =1469validate_new_branchname(opts.new_branch, &buf,1470!!opts.new_branch_force,1471!!opts.new_branch_force);14721473strbuf_release(&buf);1474}14751476if(opts.patch_mode || opts.pathspec.nr)1477returncheckout_paths(&opts,new.name);1478else1479returncheckout_branch(&opts, &new);1480}