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[] = { 27N_("git checkout [<options>] <branch>"), 28N_("git checkout [<options>] [<branch>] -- <file>..."), 29 NULL, 30}; 31 32struct checkout_opts { 33int patch_mode; 34int quiet; 35int merge; 36int force; 37int force_detach; 38int writeout_stage; 39int overwrite_ignore; 40int ignore_skipworktree; 41int ignore_other_worktrees; 42int show_progress; 43 44const char*new_branch; 45const char*new_branch_force; 46const char*new_orphan_branch; 47int new_branch_log; 48enum branch_track track; 49struct diff_options diff_options; 50 51int branch_exists; 52const char*prefix; 53struct pathspec pathspec; 54struct tree *source_tree; 55}; 56 57static intpost_checkout_hook(struct commit *old_commit,struct commit *new_commit, 58int changed) 59{ 60returnrun_hook_le(NULL,"post-checkout", 61oid_to_hex(old_commit ? &old_commit->object.oid : &null_oid), 62oid_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 intupdate_some(const struct object_id *oid,struct strbuf *base, 70const char*pathname,unsigned mode,int stage,void*context) 71{ 72int len; 73struct cache_entry *ce; 74int pos; 75 76if(S_ISDIR(mode)) 77return READ_TREE_RECURSIVE; 78 79 len = base->len +strlen(pathname); 80 ce =xcalloc(1,cache_entry_size(len)); 81oidcpy(&ce->oid, oid); 82memcpy(ce->name, base->buf, base->len); 83memcpy(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); 94if(pos >=0) { 95struct cache_entry *old = active_cache[pos]; 96if(ce->ce_mode == old->ce_mode && 97!oidcmp(&ce->oid, &old->oid)) { 98 old->ce_flags |= CE_UPDATE; 99free(ce); 100return0; 101} 102} 103 104add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE); 105return0; 106} 107 108static intread_tree_some(struct tree *tree,const struct pathspec *pathspec) 109{ 110read_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 */ 116return0; 117} 118 119static intskip_same_name(const struct cache_entry *ce,int pos) 120{ 121while(++pos < active_nr && 122!strcmp(active_cache[pos]->name, ce->name)) 123;/* skip */ 124return pos; 125} 126 127static intcheck_stage(int stage,const struct cache_entry *ce,int pos) 128{ 129while(pos < active_nr && 130!strcmp(active_cache[pos]->name, ce->name)) { 131if(ce_stage(active_cache[pos]) == stage) 132return0; 133 pos++; 134} 135if(stage ==2) 136returnerror(_("path '%s' does not have our version"), ce->name); 137else 138returnerror(_("path '%s' does not have their version"), ce->name); 139} 140 141static intcheck_stages(unsigned stages,const struct cache_entry *ce,int pos) 142{ 143unsigned seen =0; 144const char*name = ce->name; 145 146while(pos < active_nr) { 147 ce = active_cache[pos]; 148if(strcmp(name, ce->name)) 149break; 150 seen |= (1<<ce_stage(ce)); 151 pos++; 152} 153if((stages & seen) != stages) 154returnerror(_("path '%s' does not have all necessary versions"), 155 name); 156return0; 157} 158 159static intcheckout_stage(int stage,const struct cache_entry *ce,int pos, 160const struct checkout *state) 161{ 162while(pos < active_nr && 163!strcmp(active_cache[pos]->name, ce->name)) { 164if(ce_stage(active_cache[pos]) == stage) 165returncheckout_entry(active_cache[pos], state, NULL); 166 pos++; 167} 168if(stage ==2) 169returnerror(_("path '%s' does not have our version"), ce->name); 170else 171returnerror(_("path '%s' does not have their version"), ce->name); 172} 173 174static intcheckout_merged(int pos,const struct checkout *state) 175{ 176struct cache_entry *ce = active_cache[pos]; 177const char*path = ce->name; 178 mmfile_t ancestor, ours, theirs; 179int status; 180struct object_id oid; 181 mmbuffer_t result_buf; 182struct object_id threeway[3]; 183unsigned mode =0; 184 185memset(threeway,0,sizeof(threeway)); 186while(pos < active_nr) { 187int stage; 188 stage =ce_stage(ce); 189if(!stage ||strcmp(path, ce->name)) 190break; 191oidcpy(&threeway[stage -1], &ce->oid); 192if(stage ==2) 193 mode =create_ce_mode(ce->ce_mode); 194 pos++; 195 ce = active_cache[pos]; 196} 197if(is_null_oid(&threeway[1]) ||is_null_oid(&threeway[2])) 198returnerror(_("path '%s' does not have necessary versions"), path); 199 200read_mmblob(&ancestor, &threeway[0]); 201read_mmblob(&ours, &threeway[1]); 202read_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); 210free(ancestor.ptr); 211free(ours.ptr); 212free(theirs.ptr); 213if(status <0|| !result_buf.ptr) { 214free(result_buf.ptr); 215returnerror(_("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 */ 230if(write_object_file(result_buf.ptr, result_buf.size, blob_type, &oid)) 231die(_("Unable to add merge result for '%s'"), path); 232free(result_buf.ptr); 233 ce =make_cache_entry(mode, oid.hash, path,2,0); 234if(!ce) 235die(_("make_cache_entry failed for path '%s'"), path); 236 status =checkout_entry(ce, state, NULL); 237free(ce); 238return status; 239} 240 241static intcheckout_paths(const struct checkout_opts *opts, 242const char*revision) 243{ 244int pos; 245struct checkout state = CHECKOUT_INIT; 246static char*ps_matched; 247struct object_id rev; 248struct commit *head; 249int errs =0; 250struct lock_file lock_file = LOCK_INIT; 251 252if(opts->track != BRANCH_TRACK_UNSPECIFIED) 253die(_("'%s' cannot be used with updating paths"),"--track"); 254 255if(opts->new_branch_log) 256die(_("'%s' cannot be used with updating paths"),"-l"); 257 258if(opts->force && opts->patch_mode) 259die(_("'%s' cannot be used with updating paths"),"-f"); 260 261if(opts->force_detach) 262die(_("'%s' cannot be used with updating paths"),"--detach"); 263 264if(opts->merge && opts->patch_mode) 265die(_("'%s' cannot be used with%s"),"--merge","--patch"); 266 267if(opts->force && opts->merge) 268die(_("'%s' cannot be used with%s"),"-f","-m"); 269 270if(opts->new_branch) 271die(_("Cannot update paths and switch to branch '%s' at the same time."), 272 opts->new_branch); 273 274if(opts->patch_mode) 275returnrun_add_interactive(revision,"--patch=checkout", 276&opts->pathspec); 277 278hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR); 279if(read_cache_preload(&opts->pathspec) <0) 280returnerror(_("index file corrupt")); 281 282if(opts->source_tree) 283read_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 */ 291for(pos =0; pos < active_nr; pos++) { 292struct cache_entry *ce = active_cache[pos]; 293 ce->ce_flags &= ~CE_MATCHED; 294if(!opts->ignore_skipworktree &&ce_skip_worktree(ce)) 295continue; 296if(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 */ 304continue; 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 */ 319if(ce_path_match(ce, &opts->pathspec, ps_matched)) 320 ce->ce_flags |= CE_MATCHED; 321} 322 323if(report_path_error(ps_matched, &opts->pathspec, opts->prefix)) { 324free(ps_matched); 325return1; 326} 327free(ps_matched); 328 329/* "checkout -m path" to recreate conflicted state */ 330if(opts->merge) 331unmerge_marked_index(&the_index); 332 333/* Any unmerged paths? */ 334for(pos =0; pos < active_nr; pos++) { 335const struct cache_entry *ce = active_cache[pos]; 336if(ce->ce_flags & CE_MATCHED) { 337if(!ce_stage(ce)) 338continue; 339if(opts->force) { 340warning(_("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; 347error(_("path '%s' is unmerged"), ce->name); 348} 349 pos =skip_same_name(ce, pos) -1; 350} 351} 352if(errs) 353return1; 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 360enable_delayed_checkout(&state); 361for(pos =0; pos < active_nr; pos++) { 362struct cache_entry *ce = active_cache[pos]; 363if(ce->ce_flags & CE_MATCHED) { 364if(!ce_stage(ce)) { 365 errs |=checkout_entry(ce, &state, NULL); 366continue; 367} 368if(opts->writeout_stage) 369 errs |=checkout_stage(opts->writeout_stage, ce, pos, &state); 370else 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 377if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) 378die(_("unable to write new index file")); 379 380read_ref_full("HEAD",0, &rev, NULL); 381 head =lookup_commit_reference_gently(&rev,1); 382 383 errs |=post_checkout_hook(head, head,0); 384return errs; 385} 386 387static voidshow_local_changes(struct object *head, 388const struct diff_options *opts) 389{ 390struct rev_info rev; 391/* I think we want full paths, even if we're in a subdirectory. */ 392init_revisions(&rev, NULL); 393 rev.diffopt.flags = opts->flags; 394 rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS; 395diff_setup_done(&rev.diffopt); 396add_pending_object(&rev, head, NULL); 397run_diff_index(&rev,0); 398} 399 400static voiddescribe_detached_head(const char*msg,struct commit *commit) 401{ 402struct strbuf sb = STRBUF_INIT; 403 404if(!parse_commit(commit)) 405pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb); 406if(print_sha1_ellipsis()) { 407fprintf(stderr,"%s %s...%s\n", msg, 408find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf); 409}else{ 410fprintf(stderr,"%s %s %s\n", msg, 411find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf); 412} 413strbuf_release(&sb); 414} 415 416static intreset_tree(struct tree *tree,const struct checkout_opts *o, 417int worktree,int*writeout_error) 418{ 419struct unpack_trees_options opts; 420struct tree_desc tree_desc; 421 422memset(&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; 432parse_tree(tree); 433init_tree_desc(&tree_desc, tree->buffer, tree->size); 434switch(unpack_trees(1, &tree_desc, &opts)) { 435case-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 */ 444case0: 445return0; 446default: 447return128; 448} 449} 450 451struct branch_info { 452const char*name;/* The short name used */ 453const char*path;/* The full name of a real branch */ 454struct 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 */ 459char*checkout; 460}; 461 462static voidsetup_branch_path(struct branch_info *branch) 463{ 464struct strbuf buf = STRBUF_INIT; 465 466strbuf_branchname(&buf, branch->name, INTERPRET_BRANCH_LOCAL); 467if(strcmp(buf.buf, branch->name)) 468 branch->name =xstrdup(buf.buf); 469strbuf_splice(&buf,0,0,"refs/heads/",11); 470 branch->path =strbuf_detach(&buf, NULL); 471} 472 473static intmerge_working_tree(const struct checkout_opts *opts, 474struct branch_info *old_branch_info, 475struct branch_info *new_branch_info, 476int*writeout_error) 477{ 478int ret; 479struct lock_file lock_file = LOCK_INIT; 480 481hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR); 482if(read_cache_preload(NULL) <0) 483returnerror(_("index file corrupt")); 484 485resolve_undo_clear(); 486if(opts->force) { 487 ret =reset_tree(get_commit_tree(new_branch_info->commit), 488 opts,1, writeout_error); 489if(ret) 490return ret; 491}else{ 492struct tree_desc trees[2]; 493struct tree *tree; 494struct unpack_trees_options topts; 495 496memset(&topts,0,sizeof(topts)); 497 topts.head_idx = -1; 498 topts.src_index = &the_index; 499 topts.dst_index = &the_index; 500 501setup_unpack_trees_porcelain(&topts,"checkout"); 502 503refresh_cache(REFRESH_QUIET); 504 505if(unmerged_cache()) { 506error(_("you need to resolve your current index first")); 507return1; 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; 517if(opts->overwrite_ignore) { 518 topts.dir =xcalloc(1,sizeof(*topts.dir)); 519 topts.dir->flags |= DIR_SHOW_IGNORED; 520setup_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); 525init_tree_desc(&trees[0], tree->buffer, tree->size); 526 tree =parse_tree_indirect(&new_branch_info->commit->object.oid); 527init_tree_desc(&trees[1], tree->buffer, tree->size); 528 529 ret =unpack_trees(2, trees, &topts); 530clear_unpack_trees_porcelain(&topts); 531if(ret == -1) { 532/* 533 * Unpack couldn't do a trivial merge; either 534 * give up or do a real merge, depending on 535 * whether the merge flag was used. 536 */ 537struct tree *result; 538struct tree *work; 539struct merge_options o; 540if(!opts->merge) 541return1; 542 543/* 544 * Without old_branch_info->commit, the below is the same as 545 * the two-tree unpack we already tried and failed. 546 */ 547if(!old_branch_info->commit) 548return1; 549 550/* Do more real merge */ 551 552/* 553 * We update the index fully, then write the 554 * tree from the index, then merge the new 555 * branch with the current tree, with the old 556 * branch as the base. Then we reset the index 557 * (but not the working tree) to the new 558 * branch, leaving the working tree as the 559 * merged version, but skipping unmerged 560 * entries in the index. 561 */ 562 563add_files_to_cache(NULL, NULL,0); 564/* 565 * NEEDSWORK: carrying over local changes 566 * when branches have different end-of-line 567 * normalization (or clean+smudge rules) is 568 * a pain; plumb in an option to set 569 * o.renormalize? 570 */ 571init_merge_options(&o); 572 o.verbosity =0; 573 work =write_tree_from_memory(&o); 574 575 ret =reset_tree(get_commit_tree(new_branch_info->commit), 576 opts,1, 577 writeout_error); 578if(ret) 579return ret; 580 o.ancestor = old_branch_info->name; 581 o.branch1 = new_branch_info->name; 582 o.branch2 ="local"; 583 ret =merge_trees(&o, 584get_commit_tree(new_branch_info->commit), 585 work, 586get_commit_tree(old_branch_info->commit), 587&result); 588if(ret <0) 589exit(128); 590 ret =reset_tree(get_commit_tree(new_branch_info->commit), 591 opts,0, 592 writeout_error); 593strbuf_release(&o.obuf); 594if(ret) 595return ret; 596} 597} 598 599if(!active_cache_tree) 600 active_cache_tree =cache_tree(); 601 602if(!cache_tree_fully_valid(active_cache_tree)) 603cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR); 604 605if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) 606die(_("unable to write new index file")); 607 608if(!opts->force && !opts->quiet) 609show_local_changes(&new_branch_info->commit->object, &opts->diff_options); 610 611return0; 612} 613 614static voidreport_tracking(struct branch_info *new_branch_info) 615{ 616struct strbuf sb = STRBUF_INIT; 617struct branch *branch =branch_get(new_branch_info->name); 618 619if(!format_tracking_info(branch, &sb, AHEAD_BEHIND_FULL)) 620return; 621fputs(sb.buf, stdout); 622strbuf_release(&sb); 623} 624 625static voidupdate_refs_for_switch(const struct checkout_opts *opts, 626struct branch_info *old_branch_info, 627struct branch_info *new_branch_info) 628{ 629struct strbuf msg = STRBUF_INIT; 630const char*old_desc, *reflog_msg; 631if(opts->new_branch) { 632if(opts->new_orphan_branch) { 633char*refname; 634 635 refname =mkpathdup("refs/heads/%s", opts->new_orphan_branch); 636if(opts->new_branch_log && 637!should_autocreate_reflog(refname)) { 638int ret; 639struct strbuf err = STRBUF_INIT; 640 641 ret =safe_create_reflog(refname,1, &err); 642if(ret) { 643fprintf(stderr,_("Can not do reflog for '%s':%s\n"), 644 opts->new_orphan_branch, err.buf); 645strbuf_release(&err); 646free(refname); 647return; 648} 649strbuf_release(&err); 650} 651free(refname); 652} 653else 654create_branch(opts->new_branch, new_branch_info->name, 655 opts->new_branch_force ?1:0, 656 opts->new_branch_force ?1:0, 657 opts->new_branch_log, 658 opts->quiet, 659 opts->track); 660 new_branch_info->name = opts->new_branch; 661setup_branch_path(new_branch_info); 662} 663 664 old_desc = old_branch_info->name; 665if(!old_desc && old_branch_info->commit) 666 old_desc =oid_to_hex(&old_branch_info->commit->object.oid); 667 668 reflog_msg =getenv("GIT_REFLOG_ACTION"); 669if(!reflog_msg) 670strbuf_addf(&msg,"checkout: moving from%sto%s", 671 old_desc ? old_desc :"(invalid)", new_branch_info->name); 672else 673strbuf_insert(&msg,0, reflog_msg,strlen(reflog_msg)); 674 675if(!strcmp(new_branch_info->name,"HEAD") && !new_branch_info->path && !opts->force_detach) { 676/* Nothing to do. */ 677}else if(opts->force_detach || !new_branch_info->path) {/* No longer on any branch. */ 678update_ref(msg.buf,"HEAD", &new_branch_info->commit->object.oid, NULL, 679 REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR); 680if(!opts->quiet) { 681if(old_branch_info->path && 682 advice_detached_head && !opts->force_detach) 683detach_advice(new_branch_info->name); 684describe_detached_head(_("HEAD is now at"), new_branch_info->commit); 685} 686}else if(new_branch_info->path) {/* Switch branches. */ 687if(create_symref("HEAD", new_branch_info->path, msg.buf) <0) 688die(_("unable to update HEAD")); 689if(!opts->quiet) { 690if(old_branch_info->path && !strcmp(new_branch_info->path, old_branch_info->path)) { 691if(opts->new_branch_force) 692fprintf(stderr,_("Reset branch '%s'\n"), 693 new_branch_info->name); 694else 695fprintf(stderr,_("Already on '%s'\n"), 696 new_branch_info->name); 697}else if(opts->new_branch) { 698if(opts->branch_exists) 699fprintf(stderr,_("Switched to and reset branch '%s'\n"), new_branch_info->name); 700else 701fprintf(stderr,_("Switched to a new branch '%s'\n"), new_branch_info->name); 702}else{ 703fprintf(stderr,_("Switched to branch '%s'\n"), 704 new_branch_info->name); 705} 706} 707if(old_branch_info->path && old_branch_info->name) { 708if(!ref_exists(old_branch_info->path) &&reflog_exists(old_branch_info->path)) 709delete_reflog(old_branch_info->path); 710} 711} 712remove_branch_state(); 713strbuf_release(&msg); 714if(!opts->quiet && 715(new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name,"HEAD")))) 716report_tracking(new_branch_info); 717} 718 719static intadd_pending_uninteresting_ref(const char*refname, 720const struct object_id *oid, 721int flags,void*cb_data) 722{ 723add_pending_oid(cb_data, refname, oid, UNINTERESTING); 724return0; 725} 726 727static voiddescribe_one_orphan(struct strbuf *sb,struct commit *commit) 728{ 729strbuf_addstr(sb," "); 730strbuf_add_unique_abbrev(sb, &commit->object.oid, DEFAULT_ABBREV); 731strbuf_addch(sb,' '); 732if(!parse_commit(commit)) 733pp_commit_easy(CMIT_FMT_ONELINE, commit, sb); 734strbuf_addch(sb,'\n'); 735} 736 737#define ORPHAN_CUTOFF 4 738static voidsuggest_reattach(struct commit *commit,struct rev_info *revs) 739{ 740struct commit *c, *last = NULL; 741struct strbuf sb = STRBUF_INIT; 742int lost =0; 743while((c =get_revision(revs)) != NULL) { 744if(lost < ORPHAN_CUTOFF) 745describe_one_orphan(&sb, c); 746 last = c; 747 lost++; 748} 749if(ORPHAN_CUTOFF < lost) { 750int more = lost - ORPHAN_CUTOFF; 751if(more ==1) 752describe_one_orphan(&sb, last); 753else 754strbuf_addf(&sb,_(" ... and%dmore.\n"), more); 755} 756 757fprintf(stderr, 758Q_( 759/* The singular version */ 760"Warning: you are leaving%dcommit behind, " 761"not connected to\n" 762"any of your branches:\n\n" 763"%s\n", 764/* The plural version */ 765"Warning: you are leaving%dcommits behind, " 766"not connected to\n" 767"any of your branches:\n\n" 768"%s\n", 769/* Give ngettext() the count */ 770 lost), 771 lost, 772 sb.buf); 773strbuf_release(&sb); 774 775if(advice_detached_head) 776fprintf(stderr, 777Q_( 778/* The singular version */ 779"If you want to keep it by creating a new branch, " 780"this may be a good time\nto do so with:\n\n" 781" git branch <new-branch-name>%s\n\n", 782/* The plural version */ 783"If you want to keep them by creating a new branch, " 784"this may be a good time\nto do so with:\n\n" 785" git branch <new-branch-name>%s\n\n", 786/* Give ngettext() the count */ 787 lost), 788find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV)); 789} 790 791/* 792 * We are about to leave commit that was at the tip of a detached 793 * HEAD. If it is not reachable from any ref, this is the last chance 794 * for the user to do so without resorting to reflog. 795 */ 796static voidorphaned_commit_warning(struct commit *old_commit,struct commit *new_commit) 797{ 798struct rev_info revs; 799struct object *object = &old_commit->object; 800 801init_revisions(&revs, NULL); 802setup_revisions(0, NULL, &revs, NULL); 803 804 object->flags &= ~UNINTERESTING; 805add_pending_object(&revs, object,oid_to_hex(&object->oid)); 806 807for_each_ref(add_pending_uninteresting_ref, &revs); 808add_pending_oid(&revs,"HEAD", &new_commit->object.oid, UNINTERESTING); 809 810if(prepare_revision_walk(&revs)) 811die(_("internal error in revision walk")); 812if(!(old_commit->object.flags & UNINTERESTING)) 813suggest_reattach(old_commit, &revs); 814else 815describe_detached_head(_("Previous HEAD position was"), old_commit); 816 817/* Clean up objects used, as they will be reused. */ 818clear_commit_marks_all(ALL_REV_FLAGS); 819} 820 821static intswitch_branches(const struct checkout_opts *opts, 822struct branch_info *new_branch_info) 823{ 824int ret =0; 825struct branch_info old_branch_info; 826void*path_to_free; 827struct object_id rev; 828int flag, writeout_error =0; 829memset(&old_branch_info,0,sizeof(old_branch_info)); 830 old_branch_info.path = path_to_free =resolve_refdup("HEAD",0, &rev, &flag); 831if(old_branch_info.path) 832 old_branch_info.commit =lookup_commit_reference_gently(&rev,1); 833if(!(flag & REF_ISSYMREF)) 834 old_branch_info.path = NULL; 835 836if(old_branch_info.path) 837skip_prefix(old_branch_info.path,"refs/heads/", &old_branch_info.name); 838 839if(!new_branch_info->name) { 840 new_branch_info->name ="HEAD"; 841 new_branch_info->commit = old_branch_info.commit; 842if(!new_branch_info->commit) 843die(_("You are on a branch yet to be born")); 844parse_commit_or_die(new_branch_info->commit); 845} 846 847 ret =merge_working_tree(opts, &old_branch_info, new_branch_info, &writeout_error); 848if(ret) { 849free(path_to_free); 850return ret; 851} 852 853if(!opts->quiet && !old_branch_info.path && old_branch_info.commit && new_branch_info->commit != old_branch_info.commit) 854orphaned_commit_warning(old_branch_info.commit, new_branch_info->commit); 855 856update_refs_for_switch(opts, &old_branch_info, new_branch_info); 857 858 ret =post_checkout_hook(old_branch_info.commit, new_branch_info->commit,1); 859free(path_to_free); 860return ret || writeout_error; 861} 862 863static intgit_checkout_config(const char*var,const char*value,void*cb) 864{ 865if(!strcmp(var,"diff.ignoresubmodules")) { 866struct checkout_opts *opts = cb; 867handle_ignore_submodules_arg(&opts->diff_options, value); 868return0; 869} 870 871if(starts_with(var,"submodule.")) 872returngit_default_submodule_config(var, value, NULL); 873 874returngit_xmerge_config(var, value, NULL); 875} 876 877static intparse_branchname_arg(int argc,const char**argv, 878int dwim_new_local_branch_ok, 879struct branch_info *new_branch_info, 880struct checkout_opts *opts, 881struct object_id *rev) 882{ 883struct tree **source_tree = &opts->source_tree; 884const char**new_branch = &opts->new_branch; 885int argcount =0; 886struct object_id branch_rev; 887const char*arg; 888int dash_dash_pos; 889int has_dash_dash =0; 890int i; 891 892/* 893 * case 1: git checkout <ref> -- [<paths>] 894 * 895 * <ref> must be a valid tree, everything after the '--' must be 896 * a path. 897 * 898 * case 2: git checkout -- [<paths>] 899 * 900 * everything after the '--' must be paths. 901 * 902 * case 3: git checkout <something> [--] 903 * 904 * (a) If <something> is a commit, that is to 905 * switch to the branch or detach HEAD at it. As a special case, 906 * if <something> is A...B (missing A or B means HEAD but you can 907 * omit at most one side), and if there is a unique merge base 908 * between A and B, A...B names that merge base. 909 * 910 * (b) If <something> is _not_ a commit, either "--" is present 911 * or <something> is not a path, no -t or -b was given, and 912 * and there is a tracking branch whose name is <something> 913 * in one and only one remote, then this is a short-hand to 914 * fork local <something> from that remote-tracking branch. 915 * 916 * (c) Otherwise, if "--" is present, treat it like case (1). 917 * 918 * (d) Otherwise : 919 * - if it's a reference, treat it like case (1) 920 * - else if it's a path, treat it like case (2) 921 * - else: fail. 922 * 923 * case 4: git checkout <something> <paths> 924 * 925 * The first argument must not be ambiguous. 926 * - If it's *only* a reference, treat it like case (1). 927 * - If it's only a path, treat it like case (2). 928 * - else: fail. 929 * 930 */ 931if(!argc) 932return0; 933 934 arg = argv[0]; 935 dash_dash_pos = -1; 936for(i =0; i < argc; i++) { 937if(!strcmp(argv[i],"--")) { 938 dash_dash_pos = i; 939break; 940} 941} 942if(dash_dash_pos ==0) 943return1;/* case (2) */ 944else if(dash_dash_pos ==1) 945 has_dash_dash =1;/* case (3) or (1) */ 946else if(dash_dash_pos >=2) 947die(_("only one reference expected,%dgiven."), dash_dash_pos); 948 949if(!strcmp(arg,"-")) 950 arg ="@{-1}"; 951 952if(get_oid_mb(arg, rev)) { 953/* 954 * Either case (3) or (4), with <something> not being 955 * a commit, or an attempt to use case (1) with an 956 * invalid ref. 957 * 958 * It's likely an error, but we need to find out if 959 * we should auto-create the branch, case (3).(b). 960 */ 961int recover_with_dwim = dwim_new_local_branch_ok; 962 963if(!has_dash_dash && 964(check_filename(opts->prefix, arg) || !no_wildcard(arg))) 965 recover_with_dwim =0; 966/* 967 * Accept "git checkout foo" and "git checkout foo --" 968 * as candidates for dwim. 969 */ 970if(!(argc ==1&& !has_dash_dash) && 971!(argc ==2&& has_dash_dash)) 972 recover_with_dwim =0; 973 974if(recover_with_dwim) { 975const char*remote =unique_tracking_name(arg, rev); 976if(remote) { 977*new_branch = arg; 978 arg = remote; 979/* DWIMmed to create local branch, case (3).(b) */ 980}else{ 981 recover_with_dwim =0; 982} 983} 984 985if(!recover_with_dwim) { 986if(has_dash_dash) 987die(_("invalid reference:%s"), arg); 988return argcount; 989} 990} 991 992/* we can't end up being in (2) anymore, eat the argument */ 993 argcount++; 994 argv++; 995 argc--; 996 997 new_branch_info->name = arg; 998setup_branch_path(new_branch_info); 9991000if(!check_refname_format(new_branch_info->path,0) &&1001!read_ref(new_branch_info->path, &branch_rev))1002oidcpy(rev, &branch_rev);1003else1004 new_branch_info->path = NULL;/* not an existing branch */10051006 new_branch_info->commit =lookup_commit_reference_gently(rev,1);1007if(!new_branch_info->commit) {1008/* not a commit */1009*source_tree =parse_tree_indirect(rev);1010}else{1011parse_commit_or_die(new_branch_info->commit);1012*source_tree =get_commit_tree(new_branch_info->commit);1013}10141015if(!*source_tree)/* case (1): want a tree */1016die(_("reference is not a tree:%s"), arg);1017if(!has_dash_dash) {/* case (3).(d) -> (1) */1018/*1019 * Do not complain the most common case1020 * git checkout branch1021 * even if there happen to be a file called 'branch';1022 * it would be extremely annoying.1023 */1024if(argc)1025verify_non_filename(opts->prefix, arg);1026}else{1027 argcount++;1028 argv++;1029 argc--;1030}10311032return argcount;1033}10341035static intswitch_unborn_to_new_branch(const struct checkout_opts *opts)1036{1037int status;1038struct strbuf branch_ref = STRBUF_INIT;10391040if(!opts->new_branch)1041die(_("You are on a branch yet to be born"));1042strbuf_addf(&branch_ref,"refs/heads/%s", opts->new_branch);1043 status =create_symref("HEAD", branch_ref.buf,"checkout -b");1044strbuf_release(&branch_ref);1045if(!opts->quiet)1046fprintf(stderr,_("Switched to a new branch '%s'\n"),1047 opts->new_branch);1048return status;1049}10501051static intcheckout_branch(struct checkout_opts *opts,1052struct branch_info *new_branch_info)1053{1054if(opts->pathspec.nr)1055die(_("paths cannot be used with switching branches"));10561057if(opts->patch_mode)1058die(_("'%s' cannot be used with switching branches"),1059"--patch");10601061if(opts->writeout_stage)1062die(_("'%s' cannot be used with switching branches"),1063"--ours/--theirs");10641065if(opts->force && opts->merge)1066die(_("'%s' cannot be used with '%s'"),"-f","-m");10671068if(opts->force_detach && opts->new_branch)1069die(_("'%s' cannot be used with '%s'"),1070"--detach","-b/-B/--orphan");10711072if(opts->new_orphan_branch) {1073if(opts->track != BRANCH_TRACK_UNSPECIFIED)1074die(_("'%s' cannot be used with '%s'"),"--orphan","-t");1075}else if(opts->force_detach) {1076if(opts->track != BRANCH_TRACK_UNSPECIFIED)1077die(_("'%s' cannot be used with '%s'"),"--detach","-t");1078}else if(opts->track == BRANCH_TRACK_UNSPECIFIED)1079 opts->track = git_branch_track;10801081if(new_branch_info->name && !new_branch_info->commit)1082die(_("Cannot switch branch to a non-commit '%s'"),1083 new_branch_info->name);10841085if(new_branch_info->path && !opts->force_detach && !opts->new_branch &&1086!opts->ignore_other_worktrees) {1087int flag;1088char*head_ref =resolve_refdup("HEAD",0, NULL, &flag);1089if(head_ref &&1090(!(flag & REF_ISSYMREF) ||strcmp(head_ref, new_branch_info->path)))1091die_if_checked_out(new_branch_info->path,1);1092free(head_ref);1093}10941095if(!new_branch_info->commit && opts->new_branch) {1096struct object_id rev;1097int flag;10981099if(!read_ref_full("HEAD",0, &rev, &flag) &&1100(flag & REF_ISSYMREF) &&is_null_oid(&rev))1101returnswitch_unborn_to_new_branch(opts);1102}1103returnswitch_branches(opts, new_branch_info);1104}11051106intcmd_checkout(int argc,const char**argv,const char*prefix)1107{1108struct checkout_opts opts;1109struct branch_info new_branch_info;1110char*conflict_style = NULL;1111int dwim_new_local_branch =1;1112struct option options[] = {1113OPT__QUIET(&opts.quiet,N_("suppress progress reporting")),1114OPT_STRING('b', NULL, &opts.new_branch,N_("branch"),1115N_("create and checkout a new branch")),1116OPT_STRING('B', NULL, &opts.new_branch_force,N_("branch"),1117N_("create/reset and checkout a branch")),1118OPT_BOOL('l', NULL, &opts.new_branch_log,N_("create reflog for new branch")),1119OPT_BOOL(0,"detach", &opts.force_detach,N_("detach HEAD at named commit")),1120OPT_SET_INT('t',"track", &opts.track,N_("set upstream info for new branch"),1121 BRANCH_TRACK_EXPLICIT),1122OPT_STRING(0,"orphan", &opts.new_orphan_branch,N_("new-branch"),N_("new unparented branch")),1123OPT_SET_INT('2',"ours", &opts.writeout_stage,N_("checkout our version for unmerged files"),11242),1125OPT_SET_INT('3',"theirs", &opts.writeout_stage,N_("checkout their version for unmerged files"),11263),1127OPT__FORCE(&opts.force,N_("force checkout (throw away local modifications)"),1128 PARSE_OPT_NOCOMPLETE),1129OPT_BOOL('m',"merge", &opts.merge,N_("perform a 3-way merge with the new branch")),1130OPT_BOOL_F(0,"overwrite-ignore", &opts.overwrite_ignore,1131N_("update ignored files (default)"),1132 PARSE_OPT_NOCOMPLETE),1133OPT_STRING(0,"conflict", &conflict_style,N_("style"),1134N_("conflict style (merge or diff3)")),1135OPT_BOOL('p',"patch", &opts.patch_mode,N_("select hunks interactively")),1136OPT_BOOL(0,"ignore-skip-worktree-bits", &opts.ignore_skipworktree,1137N_("do not limit pathspecs to sparse entries only")),1138OPT_HIDDEN_BOOL(0,"guess", &dwim_new_local_branch,1139N_("second guess 'git checkout <no-such-branch>'")),1140OPT_BOOL(0,"ignore-other-worktrees", &opts.ignore_other_worktrees,1141N_("do not check if another worktree is holding the given ref")),1142{ OPTION_CALLBACK,0,"recurse-submodules", NULL,1143"checkout","control recursive updating of submodules",1144 PARSE_OPT_OPTARG, option_parse_recurse_submodules_worktree_updater },1145OPT_BOOL(0,"progress", &opts.show_progress,N_("force progress reporting")),1146OPT_END(),1147};11481149memset(&opts,0,sizeof(opts));1150memset(&new_branch_info,0,sizeof(new_branch_info));1151 opts.overwrite_ignore =1;1152 opts.prefix = prefix;1153 opts.show_progress = -1;11541155git_config(git_checkout_config, &opts);11561157 opts.track = BRANCH_TRACK_UNSPECIFIED;11581159 argc =parse_options(argc, argv, prefix, options, checkout_usage,1160 PARSE_OPT_KEEP_DASHDASH);11611162if(opts.show_progress <0) {1163if(opts.quiet)1164 opts.show_progress =0;1165else1166 opts.show_progress =isatty(2);1167}11681169if(conflict_style) {1170 opts.merge =1;/* implied */1171git_xmerge_config("merge.conflictstyle", conflict_style, NULL);1172}11731174if((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) >1)1175die(_("-b, -B and --orphan are mutually exclusive"));11761177/*1178 * From here on, new_branch will contain the branch to be checked out,1179 * and new_branch_force and new_orphan_branch will tell us which one of1180 * -b/-B/--orphan is being used.1181 */1182if(opts.new_branch_force)1183 opts.new_branch = opts.new_branch_force;11841185if(opts.new_orphan_branch)1186 opts.new_branch = opts.new_orphan_branch;11871188/* --track without -b/-B/--orphan should DWIM */1189if(opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {1190const char*argv0 = argv[0];1191if(!argc || !strcmp(argv0,"--"))1192die(_("--track needs a branch name"));1193skip_prefix(argv0,"refs/", &argv0);1194skip_prefix(argv0,"remotes/", &argv0);1195 argv0 =strchr(argv0,'/');1196if(!argv0 || !argv0[1])1197die(_("Missing branch name; try -b"));1198 opts.new_branch = argv0 +1;1199}12001201/*1202 * Extract branch name from command line arguments, so1203 * all that is left is pathspecs.1204 *1205 * Handle1206 *1207 * 1) git checkout <tree> -- [<paths>]1208 * 2) git checkout -- [<paths>]1209 * 3) git checkout <something> [<paths>]1210 *1211 * including "last branch" syntax and DWIM-ery for names of1212 * remote branches, erroring out for invalid or ambiguous cases.1213 */1214if(argc) {1215struct object_id rev;1216int dwim_ok =1217!opts.patch_mode &&1218 dwim_new_local_branch &&1219 opts.track == BRANCH_TRACK_UNSPECIFIED &&1220!opts.new_branch;1221int n =parse_branchname_arg(argc, argv, dwim_ok,1222&new_branch_info, &opts, &rev);1223 argv += n;1224 argc -= n;1225}12261227if(argc) {1228parse_pathspec(&opts.pathspec,0,1229 opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN :0,1230 prefix, argv);12311232if(!opts.pathspec.nr)1233die(_("invalid path specification"));12341235/*1236 * Try to give more helpful suggestion.1237 * new_branch && argc > 1 will be caught later.1238 */1239if(opts.new_branch && argc ==1)1240die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),1241 argv[0], opts.new_branch);12421243if(opts.force_detach)1244die(_("git checkout: --detach does not take a path argument '%s'"),1245 argv[0]);12461247if(1< !!opts.writeout_stage + !!opts.force + !!opts.merge)1248die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"1249"checking out of the index."));1250}12511252if(opts.new_branch) {1253struct strbuf buf = STRBUF_INIT;12541255if(opts.new_branch_force)1256 opts.branch_exists =validate_branchname(opts.new_branch, &buf);1257else1258 opts.branch_exists =1259validate_new_branchname(opts.new_branch, &buf,0);1260strbuf_release(&buf);1261}12621263UNLEAK(opts);1264if(opts.patch_mode || opts.pathspec.nr)1265returncheckout_paths(&opts, new_branch_info.name);1266else1267returncheckout_branch(&opts, &new_branch_info);1268}