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 unsigned char*sha1,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)); 81hashcpy(ce->oid.hash, sha1); 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.hash, DEFAULT_ABBREV), sb.buf); 409}else{ 410fprintf(stderr,"%s %s %s\n", msg, 411find_unique_abbrev(commit->object.oid.hash, 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(new_branch_info->commit->tree, opts,1, writeout_error); 488if(ret) 489return ret; 490}else{ 491struct tree_desc trees[2]; 492struct tree *tree; 493struct unpack_trees_options topts; 494 495memset(&topts,0,sizeof(topts)); 496 topts.head_idx = -1; 497 topts.src_index = &the_index; 498 topts.dst_index = &the_index; 499 500setup_unpack_trees_porcelain(&topts,"checkout"); 501 502refresh_cache(REFRESH_QUIET); 503 504if(unmerged_cache()) { 505error(_("you need to resolve your current index first")); 506return1; 507} 508 509/* 2-way merge to the new branch */ 510 topts.initial_checkout =is_cache_unborn(); 511 topts.update =1; 512 topts.merge =1; 513 topts.gently = opts->merge && old_branch_info->commit; 514 topts.verbose_update = opts->show_progress; 515 topts.fn = twoway_merge; 516if(opts->overwrite_ignore) { 517 topts.dir =xcalloc(1,sizeof(*topts.dir)); 518 topts.dir->flags |= DIR_SHOW_IGNORED; 519setup_standard_excludes(topts.dir); 520} 521 tree =parse_tree_indirect(old_branch_info->commit ? 522&old_branch_info->commit->object.oid : 523 the_hash_algo->empty_tree); 524init_tree_desc(&trees[0], tree->buffer, tree->size); 525 tree =parse_tree_indirect(&new_branch_info->commit->object.oid); 526init_tree_desc(&trees[1], tree->buffer, tree->size); 527 528 ret =unpack_trees(2, trees, &topts); 529if(ret == -1) { 530/* 531 * Unpack couldn't do a trivial merge; either 532 * give up or do a real merge, depending on 533 * whether the merge flag was used. 534 */ 535struct tree *result; 536struct tree *work; 537struct merge_options o; 538if(!opts->merge) 539return1; 540 541/* 542 * Without old_branch_info->commit, the below is the same as 543 * the two-tree unpack we already tried and failed. 544 */ 545if(!old_branch_info->commit) 546return1; 547 548/* Do more real merge */ 549 550/* 551 * We update the index fully, then write the 552 * tree from the index, then merge the new 553 * branch with the current tree, with the old 554 * branch as the base. Then we reset the index 555 * (but not the working tree) to the new 556 * branch, leaving the working tree as the 557 * merged version, but skipping unmerged 558 * entries in the index. 559 */ 560 561add_files_to_cache(NULL, NULL,0); 562/* 563 * NEEDSWORK: carrying over local changes 564 * when branches have different end-of-line 565 * normalization (or clean+smudge rules) is 566 * a pain; plumb in an option to set 567 * o.renormalize? 568 */ 569init_merge_options(&o); 570 o.verbosity =0; 571 work =write_tree_from_memory(&o); 572 573 ret =reset_tree(new_branch_info->commit->tree, opts,1, 574 writeout_error); 575if(ret) 576return ret; 577 o.ancestor = old_branch_info->name; 578 o.branch1 = new_branch_info->name; 579 o.branch2 ="local"; 580 ret =merge_trees(&o, new_branch_info->commit->tree, work, 581 old_branch_info->commit->tree, &result); 582if(ret <0) 583exit(128); 584 ret =reset_tree(new_branch_info->commit->tree, opts,0, 585 writeout_error); 586strbuf_release(&o.obuf); 587if(ret) 588return ret; 589} 590} 591 592if(!active_cache_tree) 593 active_cache_tree =cache_tree(); 594 595if(!cache_tree_fully_valid(active_cache_tree)) 596cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR); 597 598if(write_locked_index(&the_index, &lock_file, COMMIT_LOCK)) 599die(_("unable to write new index file")); 600 601if(!opts->force && !opts->quiet) 602show_local_changes(&new_branch_info->commit->object, &opts->diff_options); 603 604return0; 605} 606 607static voidreport_tracking(struct branch_info *new_branch_info) 608{ 609struct strbuf sb = STRBUF_INIT; 610struct branch *branch =branch_get(new_branch_info->name); 611 612if(!format_tracking_info(branch, &sb, AHEAD_BEHIND_FULL)) 613return; 614fputs(sb.buf, stdout); 615strbuf_release(&sb); 616} 617 618static voidupdate_refs_for_switch(const struct checkout_opts *opts, 619struct branch_info *old_branch_info, 620struct branch_info *new_branch_info) 621{ 622struct strbuf msg = STRBUF_INIT; 623const char*old_desc, *reflog_msg; 624if(opts->new_branch) { 625if(opts->new_orphan_branch) { 626char*refname; 627 628 refname =mkpathdup("refs/heads/%s", opts->new_orphan_branch); 629if(opts->new_branch_log && 630!should_autocreate_reflog(refname)) { 631int ret; 632struct strbuf err = STRBUF_INIT; 633 634 ret =safe_create_reflog(refname,1, &err); 635if(ret) { 636fprintf(stderr,_("Can not do reflog for '%s':%s\n"), 637 opts->new_orphan_branch, err.buf); 638strbuf_release(&err); 639free(refname); 640return; 641} 642strbuf_release(&err); 643} 644free(refname); 645} 646else 647create_branch(opts->new_branch, new_branch_info->name, 648 opts->new_branch_force ?1:0, 649 opts->new_branch_force ?1:0, 650 opts->new_branch_log, 651 opts->quiet, 652 opts->track); 653 new_branch_info->name = opts->new_branch; 654setup_branch_path(new_branch_info); 655} 656 657 old_desc = old_branch_info->name; 658if(!old_desc && old_branch_info->commit) 659 old_desc =oid_to_hex(&old_branch_info->commit->object.oid); 660 661 reflog_msg =getenv("GIT_REFLOG_ACTION"); 662if(!reflog_msg) 663strbuf_addf(&msg,"checkout: moving from%sto%s", 664 old_desc ? old_desc :"(invalid)", new_branch_info->name); 665else 666strbuf_insert(&msg,0, reflog_msg,strlen(reflog_msg)); 667 668if(!strcmp(new_branch_info->name,"HEAD") && !new_branch_info->path && !opts->force_detach) { 669/* Nothing to do. */ 670}else if(opts->force_detach || !new_branch_info->path) {/* No longer on any branch. */ 671update_ref(msg.buf,"HEAD", &new_branch_info->commit->object.oid, NULL, 672 REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR); 673if(!opts->quiet) { 674if(old_branch_info->path && 675 advice_detached_head && !opts->force_detach) 676detach_advice(new_branch_info->name); 677describe_detached_head(_("HEAD is now at"), new_branch_info->commit); 678} 679}else if(new_branch_info->path) {/* Switch branches. */ 680if(create_symref("HEAD", new_branch_info->path, msg.buf) <0) 681die(_("unable to update HEAD")); 682if(!opts->quiet) { 683if(old_branch_info->path && !strcmp(new_branch_info->path, old_branch_info->path)) { 684if(opts->new_branch_force) 685fprintf(stderr,_("Reset branch '%s'\n"), 686 new_branch_info->name); 687else 688fprintf(stderr,_("Already on '%s'\n"), 689 new_branch_info->name); 690}else if(opts->new_branch) { 691if(opts->branch_exists) 692fprintf(stderr,_("Switched to and reset branch '%s'\n"), new_branch_info->name); 693else 694fprintf(stderr,_("Switched to a new branch '%s'\n"), new_branch_info->name); 695}else{ 696fprintf(stderr,_("Switched to branch '%s'\n"), 697 new_branch_info->name); 698} 699} 700if(old_branch_info->path && old_branch_info->name) { 701if(!ref_exists(old_branch_info->path) &&reflog_exists(old_branch_info->path)) 702delete_reflog(old_branch_info->path); 703} 704} 705remove_branch_state(); 706strbuf_release(&msg); 707if(!opts->quiet && 708(new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name,"HEAD")))) 709report_tracking(new_branch_info); 710} 711 712static intadd_pending_uninteresting_ref(const char*refname, 713const struct object_id *oid, 714int flags,void*cb_data) 715{ 716add_pending_oid(cb_data, refname, oid, UNINTERESTING); 717return0; 718} 719 720static voiddescribe_one_orphan(struct strbuf *sb,struct commit *commit) 721{ 722strbuf_addstr(sb," "); 723strbuf_add_unique_abbrev(sb, commit->object.oid.hash, DEFAULT_ABBREV); 724strbuf_addch(sb,' '); 725if(!parse_commit(commit)) 726pp_commit_easy(CMIT_FMT_ONELINE, commit, sb); 727strbuf_addch(sb,'\n'); 728} 729 730#define ORPHAN_CUTOFF 4 731static voidsuggest_reattach(struct commit *commit,struct rev_info *revs) 732{ 733struct commit *c, *last = NULL; 734struct strbuf sb = STRBUF_INIT; 735int lost =0; 736while((c =get_revision(revs)) != NULL) { 737if(lost < ORPHAN_CUTOFF) 738describe_one_orphan(&sb, c); 739 last = c; 740 lost++; 741} 742if(ORPHAN_CUTOFF < lost) { 743int more = lost - ORPHAN_CUTOFF; 744if(more ==1) 745describe_one_orphan(&sb, last); 746else 747strbuf_addf(&sb,_(" ... and%dmore.\n"), more); 748} 749 750fprintf(stderr, 751Q_( 752/* The singular version */ 753"Warning: you are leaving%dcommit behind, " 754"not connected to\n" 755"any of your branches:\n\n" 756"%s\n", 757/* The plural version */ 758"Warning: you are leaving%dcommits behind, " 759"not connected to\n" 760"any of your branches:\n\n" 761"%s\n", 762/* Give ngettext() the count */ 763 lost), 764 lost, 765 sb.buf); 766strbuf_release(&sb); 767 768if(advice_detached_head) 769fprintf(stderr, 770Q_( 771/* The singular version */ 772"If you want to keep it by creating a new branch, " 773"this may be a good time\nto do so with:\n\n" 774" git branch <new-branch-name>%s\n\n", 775/* The plural version */ 776"If you want to keep them by creating a new branch, " 777"this may be a good time\nto do so with:\n\n" 778" git branch <new-branch-name>%s\n\n", 779/* Give ngettext() the count */ 780 lost), 781find_unique_abbrev(commit->object.oid.hash, DEFAULT_ABBREV)); 782} 783 784/* 785 * We are about to leave commit that was at the tip of a detached 786 * HEAD. If it is not reachable from any ref, this is the last chance 787 * for the user to do so without resorting to reflog. 788 */ 789static voidorphaned_commit_warning(struct commit *old_commit,struct commit *new_commit) 790{ 791struct rev_info revs; 792struct object *object = &old_commit->object; 793 794init_revisions(&revs, NULL); 795setup_revisions(0, NULL, &revs, NULL); 796 797 object->flags &= ~UNINTERESTING; 798add_pending_object(&revs, object,oid_to_hex(&object->oid)); 799 800for_each_ref(add_pending_uninteresting_ref, &revs); 801add_pending_oid(&revs,"HEAD", &new_commit->object.oid, UNINTERESTING); 802 803if(prepare_revision_walk(&revs)) 804die(_("internal error in revision walk")); 805if(!(old_commit->object.flags & UNINTERESTING)) 806suggest_reattach(old_commit, &revs); 807else 808describe_detached_head(_("Previous HEAD position was"), old_commit); 809 810/* Clean up objects used, as they will be reused. */ 811clear_commit_marks_all(ALL_REV_FLAGS); 812} 813 814static intswitch_branches(const struct checkout_opts *opts, 815struct branch_info *new_branch_info) 816{ 817int ret =0; 818struct branch_info old_branch_info; 819void*path_to_free; 820struct object_id rev; 821int flag, writeout_error =0; 822memset(&old_branch_info,0,sizeof(old_branch_info)); 823 old_branch_info.path = path_to_free =resolve_refdup("HEAD",0, &rev, &flag); 824if(old_branch_info.path) 825 old_branch_info.commit =lookup_commit_reference_gently(&rev,1); 826if(!(flag & REF_ISSYMREF)) 827 old_branch_info.path = NULL; 828 829if(old_branch_info.path) 830skip_prefix(old_branch_info.path,"refs/heads/", &old_branch_info.name); 831 832if(!new_branch_info->name) { 833 new_branch_info->name ="HEAD"; 834 new_branch_info->commit = old_branch_info.commit; 835if(!new_branch_info->commit) 836die(_("You are on a branch yet to be born")); 837parse_commit_or_die(new_branch_info->commit); 838} 839 840 ret =merge_working_tree(opts, &old_branch_info, new_branch_info, &writeout_error); 841if(ret) { 842free(path_to_free); 843return ret; 844} 845 846if(!opts->quiet && !old_branch_info.path && old_branch_info.commit && new_branch_info->commit != old_branch_info.commit) 847orphaned_commit_warning(old_branch_info.commit, new_branch_info->commit); 848 849update_refs_for_switch(opts, &old_branch_info, new_branch_info); 850 851 ret =post_checkout_hook(old_branch_info.commit, new_branch_info->commit,1); 852free(path_to_free); 853return ret || writeout_error; 854} 855 856static intgit_checkout_config(const char*var,const char*value,void*cb) 857{ 858if(!strcmp(var,"diff.ignoresubmodules")) { 859struct checkout_opts *opts = cb; 860handle_ignore_submodules_arg(&opts->diff_options, value); 861return0; 862} 863 864if(starts_with(var,"submodule.")) 865returngit_default_submodule_config(var, value, NULL); 866 867returngit_xmerge_config(var, value, NULL); 868} 869 870static intparse_branchname_arg(int argc,const char**argv, 871int dwim_new_local_branch_ok, 872struct branch_info *new_branch_info, 873struct checkout_opts *opts, 874struct object_id *rev) 875{ 876struct tree **source_tree = &opts->source_tree; 877const char**new_branch = &opts->new_branch; 878int argcount =0; 879struct object_id branch_rev; 880const char*arg; 881int dash_dash_pos; 882int has_dash_dash =0; 883int i; 884 885/* 886 * case 1: git checkout <ref> -- [<paths>] 887 * 888 * <ref> must be a valid tree, everything after the '--' must be 889 * a path. 890 * 891 * case 2: git checkout -- [<paths>] 892 * 893 * everything after the '--' must be paths. 894 * 895 * case 3: git checkout <something> [--] 896 * 897 * (a) If <something> is a commit, that is to 898 * switch to the branch or detach HEAD at it. As a special case, 899 * if <something> is A...B (missing A or B means HEAD but you can 900 * omit at most one side), and if there is a unique merge base 901 * between A and B, A...B names that merge base. 902 * 903 * (b) If <something> is _not_ a commit, either "--" is present 904 * or <something> is not a path, no -t or -b was given, and 905 * and there is a tracking branch whose name is <something> 906 * in one and only one remote, then this is a short-hand to 907 * fork local <something> from that remote-tracking branch. 908 * 909 * (c) Otherwise, if "--" is present, treat it like case (1). 910 * 911 * (d) Otherwise : 912 * - if it's a reference, treat it like case (1) 913 * - else if it's a path, treat it like case (2) 914 * - else: fail. 915 * 916 * case 4: git checkout <something> <paths> 917 * 918 * The first argument must not be ambiguous. 919 * - If it's *only* a reference, treat it like case (1). 920 * - If it's only a path, treat it like case (2). 921 * - else: fail. 922 * 923 */ 924if(!argc) 925return0; 926 927 arg = argv[0]; 928 dash_dash_pos = -1; 929for(i =0; i < argc; i++) { 930if(!strcmp(argv[i],"--")) { 931 dash_dash_pos = i; 932break; 933} 934} 935if(dash_dash_pos ==0) 936return1;/* case (2) */ 937else if(dash_dash_pos ==1) 938 has_dash_dash =1;/* case (3) or (1) */ 939else if(dash_dash_pos >=2) 940die(_("only one reference expected,%dgiven."), dash_dash_pos); 941 942if(!strcmp(arg,"-")) 943 arg ="@{-1}"; 944 945if(get_oid_mb(arg, rev)) { 946/* 947 * Either case (3) or (4), with <something> not being 948 * a commit, or an attempt to use case (1) with an 949 * invalid ref. 950 * 951 * It's likely an error, but we need to find out if 952 * we should auto-create the branch, case (3).(b). 953 */ 954int recover_with_dwim = dwim_new_local_branch_ok; 955 956if(!has_dash_dash && 957(check_filename(opts->prefix, arg) || !no_wildcard(arg))) 958 recover_with_dwim =0; 959/* 960 * Accept "git checkout foo" and "git checkout foo --" 961 * as candidates for dwim. 962 */ 963if(!(argc ==1&& !has_dash_dash) && 964!(argc ==2&& has_dash_dash)) 965 recover_with_dwim =0; 966 967if(recover_with_dwim) { 968const char*remote =unique_tracking_name(arg, rev); 969if(remote) { 970*new_branch = arg; 971 arg = remote; 972/* DWIMmed to create local branch, case (3).(b) */ 973}else{ 974 recover_with_dwim =0; 975} 976} 977 978if(!recover_with_dwim) { 979if(has_dash_dash) 980die(_("invalid reference:%s"), arg); 981return argcount; 982} 983} 984 985/* we can't end up being in (2) anymore, eat the argument */ 986 argcount++; 987 argv++; 988 argc--; 989 990 new_branch_info->name = arg; 991setup_branch_path(new_branch_info); 992 993if(!check_refname_format(new_branch_info->path,0) && 994!read_ref(new_branch_info->path, &branch_rev)) 995oidcpy(rev, &branch_rev); 996else 997 new_branch_info->path = NULL;/* not an existing branch */ 998 999 new_branch_info->commit =lookup_commit_reference_gently(rev,1);1000if(!new_branch_info->commit) {1001/* not a commit */1002*source_tree =parse_tree_indirect(rev);1003}else{1004parse_commit_or_die(new_branch_info->commit);1005*source_tree = new_branch_info->commit->tree;1006}10071008if(!*source_tree)/* case (1): want a tree */1009die(_("reference is not a tree:%s"), arg);1010if(!has_dash_dash) {/* case (3).(d) -> (1) */1011/*1012 * Do not complain the most common case1013 * git checkout branch1014 * even if there happen to be a file called 'branch';1015 * it would be extremely annoying.1016 */1017if(argc)1018verify_non_filename(opts->prefix, arg);1019}else{1020 argcount++;1021 argv++;1022 argc--;1023}10241025return argcount;1026}10271028static intswitch_unborn_to_new_branch(const struct checkout_opts *opts)1029{1030int status;1031struct strbuf branch_ref = STRBUF_INIT;10321033if(!opts->new_branch)1034die(_("You are on a branch yet to be born"));1035strbuf_addf(&branch_ref,"refs/heads/%s", opts->new_branch);1036 status =create_symref("HEAD", branch_ref.buf,"checkout -b");1037strbuf_release(&branch_ref);1038if(!opts->quiet)1039fprintf(stderr,_("Switched to a new branch '%s'\n"),1040 opts->new_branch);1041return status;1042}10431044static intcheckout_branch(struct checkout_opts *opts,1045struct branch_info *new_branch_info)1046{1047if(opts->pathspec.nr)1048die(_("paths cannot be used with switching branches"));10491050if(opts->patch_mode)1051die(_("'%s' cannot be used with switching branches"),1052"--patch");10531054if(opts->writeout_stage)1055die(_("'%s' cannot be used with switching branches"),1056"--ours/--theirs");10571058if(opts->force && opts->merge)1059die(_("'%s' cannot be used with '%s'"),"-f","-m");10601061if(opts->force_detach && opts->new_branch)1062die(_("'%s' cannot be used with '%s'"),1063"--detach","-b/-B/--orphan");10641065if(opts->new_orphan_branch) {1066if(opts->track != BRANCH_TRACK_UNSPECIFIED)1067die(_("'%s' cannot be used with '%s'"),"--orphan","-t");1068}else if(opts->force_detach) {1069if(opts->track != BRANCH_TRACK_UNSPECIFIED)1070die(_("'%s' cannot be used with '%s'"),"--detach","-t");1071}else if(opts->track == BRANCH_TRACK_UNSPECIFIED)1072 opts->track = git_branch_track;10731074if(new_branch_info->name && !new_branch_info->commit)1075die(_("Cannot switch branch to a non-commit '%s'"),1076 new_branch_info->name);10771078if(new_branch_info->path && !opts->force_detach && !opts->new_branch &&1079!opts->ignore_other_worktrees) {1080int flag;1081char*head_ref =resolve_refdup("HEAD",0, NULL, &flag);1082if(head_ref &&1083(!(flag & REF_ISSYMREF) ||strcmp(head_ref, new_branch_info->path)))1084die_if_checked_out(new_branch_info->path,1);1085free(head_ref);1086}10871088if(!new_branch_info->commit && opts->new_branch) {1089struct object_id rev;1090int flag;10911092if(!read_ref_full("HEAD",0, &rev, &flag) &&1093(flag & REF_ISSYMREF) &&is_null_oid(&rev))1094returnswitch_unborn_to_new_branch(opts);1095}1096returnswitch_branches(opts, new_branch_info);1097}10981099intcmd_checkout(int argc,const char**argv,const char*prefix)1100{1101struct checkout_opts opts;1102struct branch_info new_branch_info;1103char*conflict_style = NULL;1104int dwim_new_local_branch =1;1105struct option options[] = {1106OPT__QUIET(&opts.quiet,N_("suppress progress reporting")),1107OPT_STRING('b', NULL, &opts.new_branch,N_("branch"),1108N_("create and checkout a new branch")),1109OPT_STRING('B', NULL, &opts.new_branch_force,N_("branch"),1110N_("create/reset and checkout a branch")),1111OPT_BOOL('l', NULL, &opts.new_branch_log,N_("create reflog for new branch")),1112OPT_BOOL(0,"detach", &opts.force_detach,N_("detach HEAD at named commit")),1113OPT_SET_INT('t',"track", &opts.track,N_("set upstream info for new branch"),1114 BRANCH_TRACK_EXPLICIT),1115OPT_STRING(0,"orphan", &opts.new_orphan_branch,N_("new-branch"),N_("new unparented branch")),1116OPT_SET_INT('2',"ours", &opts.writeout_stage,N_("checkout our version for unmerged files"),11172),1118OPT_SET_INT('3',"theirs", &opts.writeout_stage,N_("checkout their version for unmerged files"),11193),1120OPT__FORCE(&opts.force,N_("force checkout (throw away local modifications)"),1121 PARSE_OPT_NOCOMPLETE),1122OPT_BOOL('m',"merge", &opts.merge,N_("perform a 3-way merge with the new branch")),1123OPT_BOOL_F(0,"overwrite-ignore", &opts.overwrite_ignore,1124N_("update ignored files (default)"),1125 PARSE_OPT_NOCOMPLETE),1126OPT_STRING(0,"conflict", &conflict_style,N_("style"),1127N_("conflict style (merge or diff3)")),1128OPT_BOOL('p',"patch", &opts.patch_mode,N_("select hunks interactively")),1129OPT_BOOL(0,"ignore-skip-worktree-bits", &opts.ignore_skipworktree,1130N_("do not limit pathspecs to sparse entries only")),1131OPT_HIDDEN_BOOL(0,"guess", &dwim_new_local_branch,1132N_("second guess 'git checkout <no-such-branch>'")),1133OPT_BOOL(0,"ignore-other-worktrees", &opts.ignore_other_worktrees,1134N_("do not check if another worktree is holding the given ref")),1135{ OPTION_CALLBACK,0,"recurse-submodules", NULL,1136"checkout","control recursive updating of submodules",1137 PARSE_OPT_OPTARG, option_parse_recurse_submodules_worktree_updater },1138OPT_BOOL(0,"progress", &opts.show_progress,N_("force progress reporting")),1139OPT_END(),1140};11411142memset(&opts,0,sizeof(opts));1143memset(&new_branch_info,0,sizeof(new_branch_info));1144 opts.overwrite_ignore =1;1145 opts.prefix = prefix;1146 opts.show_progress = -1;11471148git_config(git_checkout_config, &opts);11491150 opts.track = BRANCH_TRACK_UNSPECIFIED;11511152 argc =parse_options(argc, argv, prefix, options, checkout_usage,1153 PARSE_OPT_KEEP_DASHDASH);11541155if(opts.show_progress <0) {1156if(opts.quiet)1157 opts.show_progress =0;1158else1159 opts.show_progress =isatty(2);1160}11611162if(conflict_style) {1163 opts.merge =1;/* implied */1164git_xmerge_config("merge.conflictstyle", conflict_style, NULL);1165}11661167if((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) >1)1168die(_("-b, -B and --orphan are mutually exclusive"));11691170/*1171 * From here on, new_branch will contain the branch to be checked out,1172 * and new_branch_force and new_orphan_branch will tell us which one of1173 * -b/-B/--orphan is being used.1174 */1175if(opts.new_branch_force)1176 opts.new_branch = opts.new_branch_force;11771178if(opts.new_orphan_branch)1179 opts.new_branch = opts.new_orphan_branch;11801181/* --track without -b/-B/--orphan should DWIM */1182if(opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {1183const char*argv0 = argv[0];1184if(!argc || !strcmp(argv0,"--"))1185die(_("--track needs a branch name"));1186skip_prefix(argv0,"refs/", &argv0);1187skip_prefix(argv0,"remotes/", &argv0);1188 argv0 =strchr(argv0,'/');1189if(!argv0 || !argv0[1])1190die(_("Missing branch name; try -b"));1191 opts.new_branch = argv0 +1;1192}11931194/*1195 * Extract branch name from command line arguments, so1196 * all that is left is pathspecs.1197 *1198 * Handle1199 *1200 * 1) git checkout <tree> -- [<paths>]1201 * 2) git checkout -- [<paths>]1202 * 3) git checkout <something> [<paths>]1203 *1204 * including "last branch" syntax and DWIM-ery for names of1205 * remote branches, erroring out for invalid or ambiguous cases.1206 */1207if(argc) {1208struct object_id rev;1209int dwim_ok =1210!opts.patch_mode &&1211 dwim_new_local_branch &&1212 opts.track == BRANCH_TRACK_UNSPECIFIED &&1213!opts.new_branch;1214int n =parse_branchname_arg(argc, argv, dwim_ok,1215&new_branch_info, &opts, &rev);1216 argv += n;1217 argc -= n;1218}12191220if(argc) {1221parse_pathspec(&opts.pathspec,0,1222 opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN :0,1223 prefix, argv);12241225if(!opts.pathspec.nr)1226die(_("invalid path specification"));12271228/*1229 * Try to give more helpful suggestion.1230 * new_branch && argc > 1 will be caught later.1231 */1232if(opts.new_branch && argc ==1)1233die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),1234 argv[0], opts.new_branch);12351236if(opts.force_detach)1237die(_("git checkout: --detach does not take a path argument '%s'"),1238 argv[0]);12391240if(1< !!opts.writeout_stage + !!opts.force + !!opts.merge)1241die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"1242"checking out of the index."));1243}12441245if(opts.new_branch) {1246struct strbuf buf = STRBUF_INIT;12471248if(opts.new_branch_force)1249 opts.branch_exists =validate_branchname(opts.new_branch, &buf);1250else1251 opts.branch_exists =1252validate_new_branchname(opts.new_branch, &buf,0);1253strbuf_release(&buf);1254}12551256UNLEAK(opts);1257if(opts.patch_mode || opts.pathspec.nr)1258returncheckout_paths(&opts, new_branch_info.name);1259else1260returncheckout_branch(&opts, &new_branch_info);1261}