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