1 #define USE_THE_INDEX_COMPATIBILITY_MACROS
6 #include "cache-tree.h"
14 #include "merge-recursive.h"
15 #include "object-store.h"
16 #include "parse-options.h"
19 #include "resolve-undo.h"
21 #include "run-command.h"
22 #include "submodule.h"
23 #include "submodule-config.h"
25 #include "tree-walk.h"
26 #include "unpack-trees.h"
27 #include "wt-status.h"
28 #include "xdiff-interface.h"
30 static const char * const checkout_usage
[] = {
31 N_("git checkout [<options>] <branch>"),
32 N_("git checkout [<options>] [<branch>] -- <file>..."),
36 static const char * const switch_branch_usage
[] = {
37 N_("git switch [<options>] [<branch>]"),
41 static const char * const restore_usage
[] = {
42 N_("git restore [<options>] [--source=<branch>] <file>..."),
46 struct checkout_opts
{
55 int ignore_skipworktree
;
56 int ignore_other_worktrees
;
58 int count_checkout_paths
;
60 int dwim_new_local_branch
;
64 int switch_branch_doing_nothing_is_ok
;
65 int only_merge_on_switching_branches
;
66 int can_switch_when_in_progress
;
67 int orphan_from_empty_tree
;
68 int empty_pathspec_ok
;
70 int checkout_worktree
;
71 const char *ignore_unmerged_opt
;
73 int pathspec_file_nul
;
74 const char *pathspec_from_file
;
76 const char *new_branch
;
77 const char *new_branch_force
;
78 const char *new_orphan_branch
;
80 enum branch_track track
;
81 struct diff_options diff_options
;
86 struct pathspec pathspec
;
87 const char *from_treeish
;
88 struct tree
*source_tree
;
91 static int post_checkout_hook(struct commit
*old_commit
, struct commit
*new_commit
,
94 return run_hook_le(NULL
, "post-checkout",
95 oid_to_hex(old_commit
? &old_commit
->object
.oid
: &null_oid
),
96 oid_to_hex(new_commit
? &new_commit
->object
.oid
: &null_oid
),
97 changed
? "1" : "0", NULL
);
98 /* "new_commit" can be NULL when checking out from the index before
103 static int update_some(const struct object_id
*oid
, struct strbuf
*base
,
104 const char *pathname
, unsigned mode
, int stage
, void *context
)
107 struct cache_entry
*ce
;
111 return READ_TREE_RECURSIVE
;
113 len
= base
->len
+ strlen(pathname
);
114 ce
= make_empty_cache_entry(&the_index
, len
);
115 oidcpy(&ce
->oid
, oid
);
116 memcpy(ce
->name
, base
->buf
, base
->len
);
117 memcpy(ce
->name
+ base
->len
, pathname
, len
- base
->len
);
118 ce
->ce_flags
= create_ce_flags(0) | CE_UPDATE
;
119 ce
->ce_namelen
= len
;
120 ce
->ce_mode
= create_ce_mode(mode
);
123 * If the entry is the same as the current index, we can leave the old
124 * entry in place. Whether it is UPTODATE or not, checkout_entry will
125 * do the right thing.
127 pos
= cache_name_pos(ce
->name
, ce
->ce_namelen
);
129 struct cache_entry
*old
= active_cache
[pos
];
130 if (ce
->ce_mode
== old
->ce_mode
&&
131 !ce_intent_to_add(old
) &&
132 oideq(&ce
->oid
, &old
->oid
)) {
133 old
->ce_flags
|= CE_UPDATE
;
134 discard_cache_entry(ce
);
139 add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
| ADD_CACHE_OK_TO_REPLACE
);
143 static int read_tree_some(struct tree
*tree
, const struct pathspec
*pathspec
)
145 read_tree_recursive(the_repository
, tree
, "", 0, 0,
146 pathspec
, update_some
, NULL
);
148 /* update the index with the given tree's info
149 * for all args, expanding wildcards, and exit
150 * with any non-zero return code.
155 static int skip_same_name(const struct cache_entry
*ce
, int pos
)
157 while (++pos
< active_nr
&&
158 !strcmp(active_cache
[pos
]->name
, ce
->name
))
163 static int check_stage(int stage
, const struct cache_entry
*ce
, int pos
,
166 while (pos
< active_nr
&&
167 !strcmp(active_cache
[pos
]->name
, ce
->name
)) {
168 if (ce_stage(active_cache
[pos
]) == stage
)
175 return error(_("path '%s' does not have our version"), ce
->name
);
177 return error(_("path '%s' does not have their version"), ce
->name
);
180 static int check_stages(unsigned stages
, const struct cache_entry
*ce
, int pos
)
183 const char *name
= ce
->name
;
185 while (pos
< active_nr
) {
186 ce
= active_cache
[pos
];
187 if (strcmp(name
, ce
->name
))
189 seen
|= (1 << ce_stage(ce
));
192 if ((stages
& seen
) != stages
)
193 return error(_("path '%s' does not have all necessary versions"),
198 static int checkout_stage(int stage
, const struct cache_entry
*ce
, int pos
,
199 const struct checkout
*state
, int *nr_checkouts
,
202 while (pos
< active_nr
&&
203 !strcmp(active_cache
[pos
]->name
, ce
->name
)) {
204 if (ce_stage(active_cache
[pos
]) == stage
)
205 return checkout_entry(active_cache
[pos
], state
,
214 return error(_("path '%s' does not have our version"), ce
->name
);
216 return error(_("path '%s' does not have their version"), ce
->name
);
219 static int checkout_merged(int pos
, const struct checkout
*state
, int *nr_checkouts
)
221 struct cache_entry
*ce
= active_cache
[pos
];
222 const char *path
= ce
->name
;
223 mmfile_t ancestor
, ours
, theirs
;
225 struct object_id oid
;
226 mmbuffer_t result_buf
;
227 struct object_id threeway
[3];
230 memset(threeway
, 0, sizeof(threeway
));
231 while (pos
< active_nr
) {
233 stage
= ce_stage(ce
);
234 if (!stage
|| strcmp(path
, ce
->name
))
236 oidcpy(&threeway
[stage
- 1], &ce
->oid
);
238 mode
= create_ce_mode(ce
->ce_mode
);
240 ce
= active_cache
[pos
];
242 if (is_null_oid(&threeway
[1]) || is_null_oid(&threeway
[2]))
243 return error(_("path '%s' does not have necessary versions"), path
);
245 read_mmblob(&ancestor
, &threeway
[0]);
246 read_mmblob(&ours
, &threeway
[1]);
247 read_mmblob(&theirs
, &threeway
[2]);
250 * NEEDSWORK: re-create conflicts from merges with
251 * merge.renormalize set, too
253 status
= ll_merge(&result_buf
, path
, &ancestor
, "base",
254 &ours
, "ours", &theirs
, "theirs",
255 state
->istate
, NULL
);
259 if (status
< 0 || !result_buf
.ptr
) {
260 free(result_buf
.ptr
);
261 return error(_("path '%s': cannot merge"), path
);
266 * There is absolutely no reason to write this as a blob object
267 * and create a phony cache entry. This hack is primarily to get
268 * to the write_entry() machinery that massages the contents to
269 * work-tree format and writes out which only allows it for a
270 * cache entry. The code in write_entry() needs to be refactored
271 * to allow us to feed a <buffer, size, mode> instead of a cache
272 * entry. Such a refactoring would help merge_recursive as well
273 * (it also writes the merge result to the object database even
274 * when it may contain conflicts).
276 if (write_object_file(result_buf
.ptr
, result_buf
.size
, blob_type
, &oid
))
277 die(_("Unable to add merge result for '%s'"), path
);
278 free(result_buf
.ptr
);
279 ce
= make_transient_cache_entry(mode
, &oid
, path
, 2);
281 die(_("make_cache_entry failed for path '%s'"), path
);
282 status
= checkout_entry(ce
, state
, NULL
, nr_checkouts
);
283 discard_cache_entry(ce
);
287 static void mark_ce_for_checkout_overlay(struct cache_entry
*ce
,
289 const struct checkout_opts
*opts
)
291 ce
->ce_flags
&= ~CE_MATCHED
;
292 if (!opts
->ignore_skipworktree
&& ce_skip_worktree(ce
))
294 if (opts
->source_tree
&& !(ce
->ce_flags
& CE_UPDATE
))
296 * "git checkout tree-ish -- path", but this entry
297 * is in the original index but is not in tree-ish
298 * or does not match the pathspec; it will not be
299 * checked out to the working tree. We will not do
300 * anything to this entry at all.
304 * Either this entry came from the tree-ish we are
305 * checking the paths out of, or we are checking out
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.
317 if (ce_path_match(&the_index
, ce
, &opts
->pathspec
, ps_matched
))
318 ce
->ce_flags
|= CE_MATCHED
;
321 static void mark_ce_for_checkout_no_overlay(struct cache_entry
*ce
,
323 const struct checkout_opts
*opts
)
325 ce
->ce_flags
&= ~CE_MATCHED
;
326 if (!opts
->ignore_skipworktree
&& ce_skip_worktree(ce
))
328 if (ce_path_match(&the_index
, ce
, &opts
->pathspec
, ps_matched
)) {
329 ce
->ce_flags
|= CE_MATCHED
;
330 if (opts
->source_tree
&& !(ce
->ce_flags
& CE_UPDATE
))
332 * In overlay mode, but the path is not in
333 * tree-ish, which means we should remove it
334 * from the index and the working tree.
336 ce
->ce_flags
|= CE_REMOVE
| CE_WT_REMOVE
;
340 static int checkout_worktree(const struct checkout_opts
*opts
)
342 struct checkout state
= CHECKOUT_INIT
;
343 int nr_checkouts
= 0, nr_unmerged
= 0;
348 state
.refresh_cache
= 1;
349 state
.istate
= &the_index
;
351 enable_delayed_checkout(&state
);
352 for (pos
= 0; pos
< active_nr
; pos
++) {
353 struct cache_entry
*ce
= active_cache
[pos
];
354 if (ce
->ce_flags
& CE_MATCHED
) {
356 errs
|= checkout_entry(ce
, &state
,
357 NULL
, &nr_checkouts
);
360 if (opts
->writeout_stage
)
361 errs
|= checkout_stage(opts
->writeout_stage
,
364 &nr_checkouts
, opts
->overlay_mode
);
365 else if (opts
->merge
)
366 errs
|= checkout_merged(pos
, &state
,
368 pos
= skip_same_name(ce
, pos
) - 1;
371 remove_marked_cache_entries(&the_index
, 1);
372 remove_scheduled_dirs();
373 errs
|= finish_delayed_checkout(&state
, &nr_checkouts
);
375 if (opts
->count_checkout_paths
) {
377 fprintf_ln(stderr
, Q_("Recreated %d merge conflict",
378 "Recreated %d merge conflicts",
381 if (opts
->source_tree
)
382 fprintf_ln(stderr
, Q_("Updated %d path from %s",
383 "Updated %d paths from %s",
386 find_unique_abbrev(&opts
->source_tree
->object
.oid
,
388 else if (!nr_unmerged
|| nr_checkouts
)
389 fprintf_ln(stderr
, Q_("Updated %d path from the index",
390 "Updated %d paths from the index",
398 static int checkout_paths(const struct checkout_opts
*opts
,
399 const char *revision
)
402 static char *ps_matched
;
403 struct object_id rev
;
406 struct lock_file lock_file
= LOCK_INIT
;
409 trace2_cmd_mode(opts
->patch_mode
? "patch" : "path");
411 if (opts
->track
!= BRANCH_TRACK_UNSPECIFIED
)
412 die(_("'%s' cannot be used with updating paths"), "--track");
414 if (opts
->new_branch_log
)
415 die(_("'%s' cannot be used with updating paths"), "-l");
417 if (opts
->ignore_unmerged
&& opts
->patch_mode
)
418 die(_("'%s' cannot be used with updating paths"),
419 opts
->ignore_unmerged_opt
);
421 if (opts
->force_detach
)
422 die(_("'%s' cannot be used with updating paths"), "--detach");
424 if (opts
->merge
&& opts
->patch_mode
)
425 die(_("'%s' cannot be used with %s"), "--merge", "--patch");
427 if (opts
->ignore_unmerged
&& opts
->merge
)
428 die(_("'%s' cannot be used with %s"),
429 opts
->ignore_unmerged_opt
, "-m");
431 if (opts
->new_branch
)
432 die(_("Cannot update paths and switch to branch '%s' at the same time."),
435 if (!opts
->checkout_worktree
&& !opts
->checkout_index
)
436 die(_("neither '%s' or '%s' is specified"),
437 "--staged", "--worktree");
439 if (!opts
->checkout_worktree
&& !opts
->from_treeish
)
440 die(_("'%s' must be used when '%s' is not specified"),
441 "--worktree", "--source");
443 if (opts
->checkout_index
&& !opts
->checkout_worktree
&&
444 opts
->writeout_stage
)
445 die(_("'%s' or '%s' cannot be used with %s"),
446 "--ours", "--theirs", "--staged");
448 if (opts
->checkout_index
&& !opts
->checkout_worktree
&&
450 die(_("'%s' or '%s' cannot be used with %s"),
451 "--merge", "--conflict", "--staged");
453 if (opts
->patch_mode
) {
454 const char *patch_mode
;
456 if (opts
->checkout_index
&& opts
->checkout_worktree
)
457 patch_mode
= "--patch=checkout";
458 else if (opts
->checkout_index
&& !opts
->checkout_worktree
)
459 patch_mode
= "--patch=reset";
460 else if (!opts
->checkout_index
&& opts
->checkout_worktree
)
461 patch_mode
= "--patch=worktree";
463 BUG("either flag must have been set, worktree=%d, index=%d",
464 opts
->checkout_worktree
, opts
->checkout_index
);
465 return run_add_interactive(revision
, patch_mode
, &opts
->pathspec
);
468 repo_hold_locked_index(the_repository
, &lock_file
, LOCK_DIE_ON_ERROR
);
469 if (read_cache_preload(&opts
->pathspec
) < 0)
470 return error(_("index file corrupt"));
472 if (opts
->source_tree
)
473 read_tree_some(opts
->source_tree
, &opts
->pathspec
);
475 ps_matched
= xcalloc(opts
->pathspec
.nr
, 1);
478 * Make sure all pathspecs participated in locating the paths
481 for (pos
= 0; pos
< active_nr
; pos
++)
482 if (opts
->overlay_mode
)
483 mark_ce_for_checkout_overlay(active_cache
[pos
],
487 mark_ce_for_checkout_no_overlay(active_cache
[pos
],
491 if (report_path_error(ps_matched
, &opts
->pathspec
)) {
497 /* "checkout -m path" to recreate conflicted state */
499 unmerge_marked_index(&the_index
);
501 /* Any unmerged paths? */
502 for (pos
= 0; pos
< active_nr
; pos
++) {
503 const struct cache_entry
*ce
= active_cache
[pos
];
504 if (ce
->ce_flags
& CE_MATCHED
) {
507 if (opts
->ignore_unmerged
) {
509 warning(_("path '%s' is unmerged"), ce
->name
);
510 } else if (opts
->writeout_stage
) {
511 errs
|= check_stage(opts
->writeout_stage
, ce
, pos
, opts
->overlay_mode
);
512 } else if (opts
->merge
) {
513 errs
|= check_stages((1<<2) | (1<<3), ce
, pos
);
516 error(_("path '%s' is unmerged"), ce
->name
);
518 pos
= skip_same_name(ce
, pos
) - 1;
524 /* Now we are committed to check them out */
525 if (opts
->checkout_worktree
)
526 errs
|= checkout_worktree(opts
);
529 * Allow updating the index when checking out from the index.
530 * This is to save new stat info.
532 if (opts
->checkout_worktree
&& !opts
->checkout_index
&& !opts
->source_tree
)
535 checkout_index
= opts
->checkout_index
;
537 if (checkout_index
) {
538 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
539 die(_("unable to write new index file"));
542 * NEEDSWORK: if --worktree is not specified, we
543 * should save stat info of checked out files in the
544 * index to avoid the next (potentially costly)
545 * refresh. But it's a bit tricker to do...
547 rollback_lock_file(&lock_file
);
550 read_ref_full("HEAD", 0, &rev
, NULL
);
551 head
= lookup_commit_reference_gently(the_repository
, &rev
, 1);
553 errs
|= post_checkout_hook(head
, head
, 0);
557 static void show_local_changes(struct object
*head
,
558 const struct diff_options
*opts
)
561 /* I think we want full paths, even if we're in a subdirectory. */
562 repo_init_revisions(the_repository
, &rev
, NULL
);
563 rev
.diffopt
.flags
= opts
->flags
;
564 rev
.diffopt
.output_format
|= DIFF_FORMAT_NAME_STATUS
;
565 diff_setup_done(&rev
.diffopt
);
566 add_pending_object(&rev
, head
, NULL
);
567 run_diff_index(&rev
, 0);
570 static void describe_detached_head(const char *msg
, struct commit
*commit
)
572 struct strbuf sb
= STRBUF_INIT
;
574 if (!parse_commit(commit
))
575 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, &sb
);
576 if (print_sha1_ellipsis()) {
577 fprintf(stderr
, "%s %s... %s\n", msg
,
578 find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
), sb
.buf
);
580 fprintf(stderr
, "%s %s %s\n", msg
,
581 find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
), sb
.buf
);
586 static int reset_tree(struct tree
*tree
, const struct checkout_opts
*o
,
587 int worktree
, int *writeout_error
)
589 struct unpack_trees_options opts
;
590 struct tree_desc tree_desc
;
592 memset(&opts
, 0, sizeof(opts
));
594 opts
.update
= worktree
;
595 opts
.skip_unmerged
= !worktree
;
598 opts
.fn
= oneway_merge
;
599 opts
.verbose_update
= o
->show_progress
;
600 opts
.src_index
= &the_index
;
601 opts
.dst_index
= &the_index
;
603 init_tree_desc(&tree_desc
, tree
->buffer
, tree
->size
);
604 switch (unpack_trees(1, &tree_desc
, &opts
)) {
608 * We return 0 nevertheless, as the index is all right
609 * and more importantly we have made best efforts to
610 * update paths in the work tree, and we cannot revert
622 const char *name
; /* The short name used */
623 const char *path
; /* The full name of a real branch */
624 struct commit
*commit
; /* The named commit */
626 * if not null the branch is detached because it's already
627 * checked out in this checkout
632 static void setup_branch_path(struct branch_info
*branch
)
634 struct strbuf buf
= STRBUF_INIT
;
636 strbuf_branchname(&buf
, branch
->name
, INTERPRET_BRANCH_LOCAL
);
637 if (strcmp(buf
.buf
, branch
->name
))
638 branch
->name
= xstrdup(buf
.buf
);
639 strbuf_splice(&buf
, 0, 0, "refs/heads/", 11);
640 branch
->path
= strbuf_detach(&buf
, NULL
);
643 static int merge_working_tree(const struct checkout_opts
*opts
,
644 struct branch_info
*old_branch_info
,
645 struct branch_info
*new_branch_info
,
649 struct lock_file lock_file
= LOCK_INIT
;
650 struct tree
*new_tree
;
652 hold_locked_index(&lock_file
, LOCK_DIE_ON_ERROR
);
653 if (read_cache_preload(NULL
) < 0)
654 return error(_("index file corrupt"));
656 resolve_undo_clear();
657 if (opts
->new_orphan_branch
&& opts
->orphan_from_empty_tree
) {
658 if (new_branch_info
->commit
)
659 BUG("'switch --orphan' should never accept a commit as starting point");
660 new_tree
= parse_tree_indirect(the_hash_algo
->empty_tree
);
662 new_tree
= get_commit_tree(new_branch_info
->commit
);
663 if (opts
->discard_changes
) {
664 ret
= reset_tree(new_tree
, opts
, 1, writeout_error
);
668 struct tree_desc trees
[2];
670 struct unpack_trees_options topts
;
672 memset(&topts
, 0, sizeof(topts
));
674 topts
.src_index
= &the_index
;
675 topts
.dst_index
= &the_index
;
677 setup_unpack_trees_porcelain(&topts
, "checkout");
679 refresh_cache(REFRESH_QUIET
);
681 if (unmerged_cache()) {
682 error(_("you need to resolve your current index first"));
686 /* 2-way merge to the new branch */
687 topts
.initial_checkout
= is_cache_unborn();
690 topts
.quiet
= opts
->merge
&& old_branch_info
->commit
;
691 topts
.verbose_update
= opts
->show_progress
;
692 topts
.fn
= twoway_merge
;
693 if (opts
->overwrite_ignore
) {
694 topts
.dir
= xcalloc(1, sizeof(*topts
.dir
));
695 topts
.dir
->flags
|= DIR_SHOW_IGNORED
;
696 setup_standard_excludes(topts
.dir
);
698 tree
= parse_tree_indirect(old_branch_info
->commit
?
699 &old_branch_info
->commit
->object
.oid
:
700 the_hash_algo
->empty_tree
);
701 init_tree_desc(&trees
[0], tree
->buffer
, tree
->size
);
702 parse_tree(new_tree
);
704 init_tree_desc(&trees
[1], tree
->buffer
, tree
->size
);
706 ret
= unpack_trees(2, trees
, &topts
);
707 clear_unpack_trees_porcelain(&topts
);
710 * Unpack couldn't do a trivial merge; either
711 * give up or do a real merge, depending on
712 * whether the merge flag was used.
715 struct tree
*old_tree
;
716 struct merge_options o
;
717 struct strbuf sb
= STRBUF_INIT
;
718 struct strbuf old_commit_shortname
= STRBUF_INIT
;
724 * Without old_branch_info->commit, the below is the same as
725 * the two-tree unpack we already tried and failed.
727 if (!old_branch_info
->commit
)
729 old_tree
= get_commit_tree(old_branch_info
->commit
);
731 if (repo_index_has_changes(the_repository
, old_tree
, &sb
))
732 die(_("cannot continue with staged changes in "
733 "the following files:\n%s"), sb
.buf
);
736 /* Do more real merge */
739 * We update the index fully, then write the
740 * tree from the index, then merge the new
741 * branch with the current tree, with the old
742 * branch as the base. Then we reset the index
743 * (but not the working tree) to the new
744 * branch, leaving the working tree as the
745 * merged version, but skipping unmerged
746 * entries in the index.
749 add_files_to_cache(NULL
, NULL
, 0);
751 * NEEDSWORK: carrying over local changes
752 * when branches have different end-of-line
753 * normalization (or clean+smudge rules) is
754 * a pain; plumb in an option to set
757 init_merge_options(&o
, the_repository
);
759 work
= write_in_core_index_as_tree(the_repository
);
761 ret
= reset_tree(new_tree
,
766 o
.ancestor
= old_branch_info
->name
;
767 if (old_branch_info
->name
== NULL
) {
768 strbuf_add_unique_abbrev(&old_commit_shortname
,
769 &old_branch_info
->commit
->object
.oid
,
771 o
.ancestor
= old_commit_shortname
.buf
;
773 o
.branch1
= new_branch_info
->name
;
775 ret
= merge_trees(&o
,
781 ret
= reset_tree(new_tree
,
784 strbuf_release(&o
.obuf
);
785 strbuf_release(&old_commit_shortname
);
791 if (!active_cache_tree
)
792 active_cache_tree
= cache_tree();
794 if (!cache_tree_fully_valid(active_cache_tree
))
795 cache_tree_update(&the_index
, WRITE_TREE_SILENT
| WRITE_TREE_REPAIR
);
797 if (write_locked_index(&the_index
, &lock_file
, COMMIT_LOCK
))
798 die(_("unable to write new index file"));
800 if (!opts
->discard_changes
&& !opts
->quiet
&& new_branch_info
->commit
)
801 show_local_changes(&new_branch_info
->commit
->object
, &opts
->diff_options
);
806 static void report_tracking(struct branch_info
*new_branch_info
)
808 struct strbuf sb
= STRBUF_INIT
;
809 struct branch
*branch
= branch_get(new_branch_info
->name
);
811 if (!format_tracking_info(branch
, &sb
, AHEAD_BEHIND_FULL
))
813 fputs(sb
.buf
, stdout
);
817 static void update_refs_for_switch(const struct checkout_opts
*opts
,
818 struct branch_info
*old_branch_info
,
819 struct branch_info
*new_branch_info
)
821 struct strbuf msg
= STRBUF_INIT
;
822 const char *old_desc
, *reflog_msg
;
823 if (opts
->new_branch
) {
824 if (opts
->new_orphan_branch
) {
827 refname
= mkpathdup("refs/heads/%s", opts
->new_orphan_branch
);
828 if (opts
->new_branch_log
&&
829 !should_autocreate_reflog(refname
)) {
831 struct strbuf err
= STRBUF_INIT
;
833 ret
= safe_create_reflog(refname
, 1, &err
);
835 fprintf(stderr
, _("Can not do reflog for '%s': %s\n"),
836 opts
->new_orphan_branch
, err
.buf
);
837 strbuf_release(&err
);
841 strbuf_release(&err
);
846 create_branch(the_repository
,
847 opts
->new_branch
, new_branch_info
->name
,
848 opts
->new_branch_force
? 1 : 0,
849 opts
->new_branch_force
? 1 : 0,
850 opts
->new_branch_log
,
853 new_branch_info
->name
= opts
->new_branch
;
854 setup_branch_path(new_branch_info
);
857 old_desc
= old_branch_info
->name
;
858 if (!old_desc
&& old_branch_info
->commit
)
859 old_desc
= oid_to_hex(&old_branch_info
->commit
->object
.oid
);
861 reflog_msg
= getenv("GIT_REFLOG_ACTION");
863 strbuf_addf(&msg
, "checkout: moving from %s to %s",
864 old_desc
? old_desc
: "(invalid)", new_branch_info
->name
);
866 strbuf_insert(&msg
, 0, reflog_msg
, strlen(reflog_msg
));
868 if (!strcmp(new_branch_info
->name
, "HEAD") && !new_branch_info
->path
&& !opts
->force_detach
) {
870 } else if (opts
->force_detach
|| !new_branch_info
->path
) { /* No longer on any branch. */
871 update_ref(msg
.buf
, "HEAD", &new_branch_info
->commit
->object
.oid
, NULL
,
872 REF_NO_DEREF
, UPDATE_REFS_DIE_ON_ERR
);
874 if (old_branch_info
->path
&&
875 advice_detached_head
&& !opts
->force_detach
)
876 detach_advice(new_branch_info
->name
);
877 describe_detached_head(_("HEAD is now at"), new_branch_info
->commit
);
879 } else if (new_branch_info
->path
) { /* Switch branches. */
880 if (create_symref("HEAD", new_branch_info
->path
, msg
.buf
) < 0)
881 die(_("unable to update HEAD"));
883 if (old_branch_info
->path
&& !strcmp(new_branch_info
->path
, old_branch_info
->path
)) {
884 if (opts
->new_branch_force
)
885 fprintf(stderr
, _("Reset branch '%s'\n"),
886 new_branch_info
->name
);
888 fprintf(stderr
, _("Already on '%s'\n"),
889 new_branch_info
->name
);
890 } else if (opts
->new_branch
) {
891 if (opts
->branch_exists
)
892 fprintf(stderr
, _("Switched to and reset branch '%s'\n"), new_branch_info
->name
);
894 fprintf(stderr
, _("Switched to a new branch '%s'\n"), new_branch_info
->name
);
896 fprintf(stderr
, _("Switched to branch '%s'\n"),
897 new_branch_info
->name
);
900 if (old_branch_info
->path
&& old_branch_info
->name
) {
901 if (!ref_exists(old_branch_info
->path
) && reflog_exists(old_branch_info
->path
))
902 delete_reflog(old_branch_info
->path
);
905 remove_branch_state(the_repository
, !opts
->quiet
);
906 strbuf_release(&msg
);
908 (new_branch_info
->path
|| (!opts
->force_detach
&& !strcmp(new_branch_info
->name
, "HEAD"))))
909 report_tracking(new_branch_info
);
912 static int add_pending_uninteresting_ref(const char *refname
,
913 const struct object_id
*oid
,
914 int flags
, void *cb_data
)
916 add_pending_oid(cb_data
, refname
, oid
, UNINTERESTING
);
920 static void describe_one_orphan(struct strbuf
*sb
, struct commit
*commit
)
922 strbuf_addstr(sb
, " ");
923 strbuf_add_unique_abbrev(sb
, &commit
->object
.oid
, DEFAULT_ABBREV
);
924 strbuf_addch(sb
, ' ');
925 if (!parse_commit(commit
))
926 pp_commit_easy(CMIT_FMT_ONELINE
, commit
, sb
);
927 strbuf_addch(sb
, '\n');
930 #define ORPHAN_CUTOFF 4
931 static void suggest_reattach(struct commit
*commit
, struct rev_info
*revs
)
933 struct commit
*c
, *last
= NULL
;
934 struct strbuf sb
= STRBUF_INIT
;
936 while ((c
= get_revision(revs
)) != NULL
) {
937 if (lost
< ORPHAN_CUTOFF
)
938 describe_one_orphan(&sb
, c
);
942 if (ORPHAN_CUTOFF
< lost
) {
943 int more
= lost
- ORPHAN_CUTOFF
;
945 describe_one_orphan(&sb
, last
);
947 strbuf_addf(&sb
, _(" ... and %d more.\n"), more
);
952 /* The singular version */
953 "Warning: you are leaving %d commit behind, "
955 "any of your branches:\n\n"
957 /* The plural version */
958 "Warning: you are leaving %d commits behind, "
960 "any of your branches:\n\n"
962 /* Give ngettext() the count */
968 if (advice_detached_head
)
971 /* The singular version */
972 "If you want to keep it by creating a new branch, "
973 "this may be a good time\nto do so with:\n\n"
974 " git branch <new-branch-name> %s\n\n",
975 /* The plural version */
976 "If you want to keep them by creating a new branch, "
977 "this may be a good time\nto do so with:\n\n"
978 " git branch <new-branch-name> %s\n\n",
979 /* Give ngettext() the count */
981 find_unique_abbrev(&commit
->object
.oid
, DEFAULT_ABBREV
));
985 * We are about to leave commit that was at the tip of a detached
986 * HEAD. If it is not reachable from any ref, this is the last chance
987 * for the user to do so without resorting to reflog.
989 static void orphaned_commit_warning(struct commit
*old_commit
, struct commit
*new_commit
)
991 struct rev_info revs
;
992 struct object
*object
= &old_commit
->object
;
994 repo_init_revisions(the_repository
, &revs
, NULL
);
995 setup_revisions(0, NULL
, &revs
, NULL
);
997 object
->flags
&= ~UNINTERESTING
;
998 add_pending_object(&revs
, object
, oid_to_hex(&object
->oid
));
1000 for_each_ref(add_pending_uninteresting_ref
, &revs
);
1002 add_pending_oid(&revs
, "HEAD",
1003 &new_commit
->object
.oid
,
1006 if (prepare_revision_walk(&revs
))
1007 die(_("internal error in revision walk"));
1008 if (!(old_commit
->object
.flags
& UNINTERESTING
))
1009 suggest_reattach(old_commit
, &revs
);
1011 describe_detached_head(_("Previous HEAD position was"), old_commit
);
1013 /* Clean up objects used, as they will be reused. */
1014 clear_commit_marks_all(ALL_REV_FLAGS
);
1017 static int switch_branches(const struct checkout_opts
*opts
,
1018 struct branch_info
*new_branch_info
)
1021 struct branch_info old_branch_info
;
1023 struct object_id rev
;
1024 int flag
, writeout_error
= 0;
1027 trace2_cmd_mode("branch");
1029 memset(&old_branch_info
, 0, sizeof(old_branch_info
));
1030 old_branch_info
.path
= path_to_free
= resolve_refdup("HEAD", 0, &rev
, &flag
);
1031 if (old_branch_info
.path
)
1032 old_branch_info
.commit
= lookup_commit_reference_gently(the_repository
, &rev
, 1);
1033 if (!(flag
& REF_ISSYMREF
))
1034 old_branch_info
.path
= NULL
;
1036 if (old_branch_info
.path
)
1037 skip_prefix(old_branch_info
.path
, "refs/heads/", &old_branch_info
.name
);
1039 if (opts
->new_orphan_branch
&& opts
->orphan_from_empty_tree
) {
1040 if (new_branch_info
->name
)
1041 BUG("'switch --orphan' should never accept a commit as starting point");
1042 new_branch_info
->commit
= NULL
;
1043 new_branch_info
->name
= "(empty)";
1047 if (!new_branch_info
->name
) {
1048 new_branch_info
->name
= "HEAD";
1049 new_branch_info
->commit
= old_branch_info
.commit
;
1050 if (!new_branch_info
->commit
)
1051 die(_("You are on a branch yet to be born"));
1052 parse_commit_or_die(new_branch_info
->commit
);
1054 if (opts
->only_merge_on_switching_branches
)
1059 ret
= merge_working_tree(opts
, &old_branch_info
, new_branch_info
, &writeout_error
);
1066 if (!opts
->quiet
&& !old_branch_info
.path
&& old_branch_info
.commit
&& new_branch_info
->commit
!= old_branch_info
.commit
)
1067 orphaned_commit_warning(old_branch_info
.commit
, new_branch_info
->commit
);
1069 update_refs_for_switch(opts
, &old_branch_info
, new_branch_info
);
1071 ret
= post_checkout_hook(old_branch_info
.commit
, new_branch_info
->commit
, 1);
1073 return ret
|| writeout_error
;
1076 static int git_checkout_config(const char *var
, const char *value
, void *cb
)
1078 if (!strcmp(var
, "diff.ignoresubmodules")) {
1079 struct checkout_opts
*opts
= cb
;
1080 handle_ignore_submodules_arg(&opts
->diff_options
, value
);
1084 if (starts_with(var
, "submodule."))
1085 return git_default_submodule_config(var
, value
, NULL
);
1087 return git_xmerge_config(var
, value
, NULL
);
1090 static void setup_new_branch_info_and_source_tree(
1091 struct branch_info
*new_branch_info
,
1092 struct checkout_opts
*opts
,
1093 struct object_id
*rev
,
1096 struct tree
**source_tree
= &opts
->source_tree
;
1097 struct object_id branch_rev
;
1099 new_branch_info
->name
= arg
;
1100 setup_branch_path(new_branch_info
);
1102 if (!check_refname_format(new_branch_info
->path
, 0) &&
1103 !read_ref(new_branch_info
->path
, &branch_rev
))
1104 oidcpy(rev
, &branch_rev
);
1106 new_branch_info
->path
= NULL
; /* not an existing branch */
1108 new_branch_info
->commit
= lookup_commit_reference_gently(the_repository
, rev
, 1);
1109 if (!new_branch_info
->commit
) {
1111 *source_tree
= parse_tree_indirect(rev
);
1113 parse_commit_or_die(new_branch_info
->commit
);
1114 *source_tree
= get_commit_tree(new_branch_info
->commit
);
1118 static int parse_branchname_arg(int argc
, const char **argv
,
1119 int dwim_new_local_branch_ok
,
1120 struct branch_info
*new_branch_info
,
1121 struct checkout_opts
*opts
,
1122 struct object_id
*rev
,
1123 int *dwim_remotes_matched
)
1125 const char **new_branch
= &opts
->new_branch
;
1129 int has_dash_dash
= 0;
1133 * case 1: git checkout <ref> -- [<paths>]
1135 * <ref> must be a valid tree, everything after the '--' must be
1138 * case 2: git checkout -- [<paths>]
1140 * everything after the '--' must be paths.
1142 * case 3: git checkout <something> [--]
1144 * (a) If <something> is a commit, that is to
1145 * switch to the branch or detach HEAD at it. As a special case,
1146 * if <something> is A...B (missing A or B means HEAD but you can
1147 * omit at most one side), and if there is a unique merge base
1148 * between A and B, A...B names that merge base.
1150 * (b) If <something> is _not_ a commit, either "--" is present
1151 * or <something> is not a path, no -t or -b was given, and
1152 * and there is a tracking branch whose name is <something>
1153 * in one and only one remote (or if the branch exists on the
1154 * remote named in checkout.defaultRemote), then this is a
1155 * short-hand to fork local <something> from that
1156 * remote-tracking branch.
1158 * (c) Otherwise, if "--" is present, treat it like case (1).
1161 * - if it's a reference, treat it like case (1)
1162 * - else if it's a path, treat it like case (2)
1165 * case 4: git checkout <something> <paths>
1167 * The first argument must not be ambiguous.
1168 * - If it's *only* a reference, treat it like case (1).
1169 * - If it's only a path, treat it like case (2).
1176 if (!opts
->accept_pathspec
) {
1178 die(_("only one reference expected"));
1179 has_dash_dash
= 1; /* helps disambiguate */
1184 for (i
= 0; i
< argc
; i
++) {
1185 if (opts
->accept_pathspec
&& !strcmp(argv
[i
], "--")) {
1190 if (dash_dash_pos
== 0)
1191 return 1; /* case (2) */
1192 else if (dash_dash_pos
== 1)
1193 has_dash_dash
= 1; /* case (3) or (1) */
1194 else if (dash_dash_pos
>= 2)
1195 die(_("only one reference expected, %d given."), dash_dash_pos
);
1196 opts
->count_checkout_paths
= !opts
->quiet
&& !has_dash_dash
;
1198 if (!strcmp(arg
, "-"))
1201 if (get_oid_mb(arg
, rev
)) {
1203 * Either case (3) or (4), with <something> not being
1204 * a commit, or an attempt to use case (1) with an
1207 * It's likely an error, but we need to find out if
1208 * we should auto-create the branch, case (3).(b).
1210 int recover_with_dwim
= dwim_new_local_branch_ok
;
1212 int could_be_checkout_paths
= !has_dash_dash
&&
1213 check_filename(opts
->prefix
, arg
);
1215 if (!has_dash_dash
&& !no_wildcard(arg
))
1216 recover_with_dwim
= 0;
1219 * Accept "git checkout foo", "git checkout foo --"
1220 * and "git switch foo" as candidates for dwim.
1222 if (!(argc
== 1 && !has_dash_dash
) &&
1223 !(argc
== 2 && has_dash_dash
) &&
1224 opts
->accept_pathspec
)
1225 recover_with_dwim
= 0;
1227 if (recover_with_dwim
) {
1228 const char *remote
= unique_tracking_name(arg
, rev
,
1229 dwim_remotes_matched
);
1231 if (could_be_checkout_paths
)
1232 die(_("'%s' could be both a local file and a tracking branch.\n"
1233 "Please use -- (and optionally --no-guess) to disambiguate"),
1237 /* DWIMmed to create local branch, case (3).(b) */
1239 recover_with_dwim
= 0;
1243 if (!recover_with_dwim
) {
1245 die(_("invalid reference: %s"), arg
);
1250 /* we can't end up being in (2) anymore, eat the argument */
1255 setup_new_branch_info_and_source_tree(new_branch_info
, opts
, rev
, arg
);
1257 if (!opts
->source_tree
) /* case (1): want a tree */
1258 die(_("reference is not a tree: %s"), arg
);
1260 if (!has_dash_dash
) { /* case (3).(d) -> (1) */
1262 * Do not complain the most common case
1263 * git checkout branch
1264 * even if there happen to be a file called 'branch';
1265 * it would be extremely annoying.
1268 verify_non_filename(opts
->prefix
, arg
);
1269 } else if (opts
->accept_pathspec
) {
1278 static int switch_unborn_to_new_branch(const struct checkout_opts
*opts
)
1281 struct strbuf branch_ref
= STRBUF_INIT
;
1283 trace2_cmd_mode("unborn");
1285 if (!opts
->new_branch
)
1286 die(_("You are on a branch yet to be born"));
1287 strbuf_addf(&branch_ref
, "refs/heads/%s", opts
->new_branch
);
1288 status
= create_symref("HEAD", branch_ref
.buf
, "checkout -b");
1289 strbuf_release(&branch_ref
);
1291 fprintf(stderr
, _("Switched to a new branch '%s'\n"),
1296 static void die_expecting_a_branch(const struct branch_info
*branch_info
)
1298 struct object_id oid
;
1301 if (dwim_ref(branch_info
->name
, strlen(branch_info
->name
), &oid
, &to_free
) == 1) {
1302 const char *ref
= to_free
;
1304 if (skip_prefix(ref
, "refs/tags/", &ref
))
1305 die(_("a branch is expected, got tag '%s'"), ref
);
1306 if (skip_prefix(ref
, "refs/remotes/", &ref
))
1307 die(_("a branch is expected, got remote branch '%s'"), ref
);
1308 die(_("a branch is expected, got '%s'"), ref
);
1310 if (branch_info
->commit
)
1311 die(_("a branch is expected, got commit '%s'"), branch_info
->name
);
1313 * This case should never happen because we already die() on
1314 * non-commit, but just in case.
1316 die(_("a branch is expected, got '%s'"), branch_info
->name
);
1319 static void die_if_some_operation_in_progress(void)
1321 struct wt_status_state state
;
1323 memset(&state
, 0, sizeof(state
));
1324 wt_status_get_state(the_repository
, &state
, 0);
1326 if (state
.merge_in_progress
)
1327 die(_("cannot switch branch while merging\n"
1328 "Consider \"git merge --quit\" "
1329 "or \"git worktree add\"."));
1330 if (state
.am_in_progress
)
1331 die(_("cannot switch branch in the middle of an am session\n"
1332 "Consider \"git am --quit\" "
1333 "or \"git worktree add\"."));
1334 if (state
.rebase_interactive_in_progress
|| state
.rebase_in_progress
)
1335 die(_("cannot switch branch while rebasing\n"
1336 "Consider \"git rebase --quit\" "
1337 "or \"git worktree add\"."));
1338 if (state
.cherry_pick_in_progress
)
1339 die(_("cannot switch branch while cherry-picking\n"
1340 "Consider \"git cherry-pick --quit\" "
1341 "or \"git worktree add\"."));
1342 if (state
.revert_in_progress
)
1343 die(_("cannot switch branch while reverting\n"
1344 "Consider \"git revert --quit\" "
1345 "or \"git worktree add\"."));
1346 if (state
.bisect_in_progress
)
1347 warning(_("you are switching branch while bisecting"));
1350 static int checkout_branch(struct checkout_opts
*opts
,
1351 struct branch_info
*new_branch_info
)
1353 if (opts
->pathspec
.nr
)
1354 die(_("paths cannot be used with switching branches"));
1356 if (opts
->patch_mode
)
1357 die(_("'%s' cannot be used with switching branches"),
1360 if (opts
->overlay_mode
!= -1)
1361 die(_("'%s' cannot be used with switching branches"),
1364 if (opts
->writeout_stage
)
1365 die(_("'%s' cannot be used with switching branches"),
1368 if (opts
->force
&& opts
->merge
)
1369 die(_("'%s' cannot be used with '%s'"), "-f", "-m");
1371 if (opts
->discard_changes
&& opts
->merge
)
1372 die(_("'%s' cannot be used with '%s'"), "--discard-changes", "--merge");
1374 if (opts
->force_detach
&& opts
->new_branch
)
1375 die(_("'%s' cannot be used with '%s'"),
1376 "--detach", "-b/-B/--orphan");
1378 if (opts
->new_orphan_branch
) {
1379 if (opts
->track
!= BRANCH_TRACK_UNSPECIFIED
)
1380 die(_("'%s' cannot be used with '%s'"), "--orphan", "-t");
1381 if (opts
->orphan_from_empty_tree
&& new_branch_info
->name
)
1382 die(_("'%s' cannot take <start-point>"), "--orphan");
1383 } else if (opts
->force_detach
) {
1384 if (opts
->track
!= BRANCH_TRACK_UNSPECIFIED
)
1385 die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
1386 } else if (opts
->track
== BRANCH_TRACK_UNSPECIFIED
)
1387 opts
->track
= git_branch_track
;
1389 if (new_branch_info
->name
&& !new_branch_info
->commit
)
1390 die(_("Cannot switch branch to a non-commit '%s'"),
1391 new_branch_info
->name
);
1393 if (!opts
->switch_branch_doing_nothing_is_ok
&&
1394 !new_branch_info
->name
&&
1395 !opts
->new_branch
&&
1396 !opts
->force_detach
)
1397 die(_("missing branch or commit argument"));
1399 if (!opts
->implicit_detach
&&
1400 !opts
->force_detach
&&
1401 !opts
->new_branch
&&
1402 !opts
->new_branch_force
&&
1403 new_branch_info
->name
&&
1404 !new_branch_info
->path
)
1405 die_expecting_a_branch(new_branch_info
);
1407 if (!opts
->can_switch_when_in_progress
)
1408 die_if_some_operation_in_progress();
1410 if (new_branch_info
->path
&& !opts
->force_detach
&& !opts
->new_branch
&&
1411 !opts
->ignore_other_worktrees
) {
1413 char *head_ref
= resolve_refdup("HEAD", 0, NULL
, &flag
);
1415 (!(flag
& REF_ISSYMREF
) || strcmp(head_ref
, new_branch_info
->path
)))
1416 die_if_checked_out(new_branch_info
->path
, 1);
1420 if (!new_branch_info
->commit
&& opts
->new_branch
) {
1421 struct object_id rev
;
1424 if (!read_ref_full("HEAD", 0, &rev
, &flag
) &&
1425 (flag
& REF_ISSYMREF
) && is_null_oid(&rev
))
1426 return switch_unborn_to_new_branch(opts
);
1428 return switch_branches(opts
, new_branch_info
);
1431 static struct option
*add_common_options(struct checkout_opts
*opts
,
1432 struct option
*prevopts
)
1434 struct option options
[] = {
1435 OPT__QUIET(&opts
->quiet
, N_("suppress progress reporting")),
1436 { OPTION_CALLBACK
, 0, "recurse-submodules", NULL
,
1437 "checkout", "control recursive updating of submodules",
1438 PARSE_OPT_OPTARG
, option_parse_recurse_submodules_worktree_updater
},
1439 OPT_BOOL(0, "progress", &opts
->show_progress
, N_("force progress reporting")),
1440 OPT_BOOL('m', "merge", &opts
->merge
, N_("perform a 3-way merge with the new branch")),
1441 OPT_STRING(0, "conflict", &opts
->conflict_style
, N_("style"),
1442 N_("conflict style (merge or diff3)")),
1445 struct option
*newopts
= parse_options_concat(prevopts
, options
);
1450 static struct option
*add_common_switch_branch_options(
1451 struct checkout_opts
*opts
, struct option
*prevopts
)
1453 struct option options
[] = {
1454 OPT_BOOL('d', "detach", &opts
->force_detach
, N_("detach HEAD at named commit")),
1455 OPT_SET_INT('t', "track", &opts
->track
, N_("set upstream info for new branch"),
1456 BRANCH_TRACK_EXPLICIT
),
1457 OPT__FORCE(&opts
->force
, N_("force checkout (throw away local modifications)"),
1458 PARSE_OPT_NOCOMPLETE
),
1459 OPT_STRING(0, "orphan", &opts
->new_orphan_branch
, N_("new-branch"), N_("new unparented branch")),
1460 OPT_BOOL_F(0, "overwrite-ignore", &opts
->overwrite_ignore
,
1461 N_("update ignored files (default)"),
1462 PARSE_OPT_NOCOMPLETE
),
1463 OPT_BOOL(0, "ignore-other-worktrees", &opts
->ignore_other_worktrees
,
1464 N_("do not check if another worktree is holding the given ref")),
1467 struct option
*newopts
= parse_options_concat(prevopts
, options
);
1472 static struct option
*add_checkout_path_options(struct checkout_opts
*opts
,
1473 struct option
*prevopts
)
1475 struct option options
[] = {
1476 OPT_SET_INT_F('2', "ours", &opts
->writeout_stage
,
1477 N_("checkout our version for unmerged files"),
1478 2, PARSE_OPT_NONEG
),
1479 OPT_SET_INT_F('3', "theirs", &opts
->writeout_stage
,
1480 N_("checkout their version for unmerged files"),
1481 3, PARSE_OPT_NONEG
),
1482 OPT_BOOL('p', "patch", &opts
->patch_mode
, N_("select hunks interactively")),
1483 OPT_BOOL(0, "ignore-skip-worktree-bits", &opts
->ignore_skipworktree
,
1484 N_("do not limit pathspecs to sparse entries only")),
1485 OPT_PATHSPEC_FROM_FILE(&opts
->pathspec_from_file
),
1486 OPT_PATHSPEC_FILE_NUL(&opts
->pathspec_file_nul
),
1489 struct option
*newopts
= parse_options_concat(prevopts
, options
);
1494 static int checkout_main(int argc
, const char **argv
, const char *prefix
,
1495 struct checkout_opts
*opts
, struct option
*options
,
1496 const char * const usagestr
[])
1498 struct branch_info new_branch_info
;
1499 int dwim_remotes_matched
= 0;
1500 int parseopt_flags
= 0;
1502 memset(&new_branch_info
, 0, sizeof(new_branch_info
));
1503 opts
->overwrite_ignore
= 1;
1504 opts
->prefix
= prefix
;
1505 opts
->show_progress
= -1;
1507 git_config(git_checkout_config
, opts
);
1509 opts
->track
= BRANCH_TRACK_UNSPECIFIED
;
1511 if (!opts
->accept_pathspec
&& !opts
->accept_ref
)
1512 BUG("make up your mind, you need to take _something_");
1513 if (opts
->accept_pathspec
&& opts
->accept_ref
)
1514 parseopt_flags
= PARSE_OPT_KEEP_DASHDASH
;
1516 argc
= parse_options(argc
, argv
, prefix
, options
,
1517 usagestr
, parseopt_flags
);
1519 if (opts
->show_progress
< 0) {
1521 opts
->show_progress
= 0;
1523 opts
->show_progress
= isatty(2);
1526 if (opts
->conflict_style
) {
1527 opts
->merge
= 1; /* implied */
1528 git_xmerge_config("merge.conflictstyle", opts
->conflict_style
, NULL
);
1531 opts
->discard_changes
= 1;
1532 opts
->ignore_unmerged_opt
= "--force";
1533 opts
->ignore_unmerged
= 1;
1536 if ((!!opts
->new_branch
+ !!opts
->new_branch_force
+ !!opts
->new_orphan_branch
) > 1)
1537 die(_("-b, -B and --orphan are mutually exclusive"));
1539 if (opts
->overlay_mode
== 1 && opts
->patch_mode
)
1540 die(_("-p and --overlay are mutually exclusive"));
1542 if (opts
->checkout_index
>= 0 || opts
->checkout_worktree
>= 0) {
1543 if (opts
->checkout_index
< 0)
1544 opts
->checkout_index
= 0;
1545 if (opts
->checkout_worktree
< 0)
1546 opts
->checkout_worktree
= 0;
1548 if (opts
->checkout_index
< 0)
1549 opts
->checkout_index
= -opts
->checkout_index
- 1;
1550 if (opts
->checkout_worktree
< 0)
1551 opts
->checkout_worktree
= -opts
->checkout_worktree
- 1;
1553 if (opts
->checkout_index
< 0 || opts
->checkout_worktree
< 0)
1554 BUG("these flags should be non-negative by now");
1556 * convenient shortcut: "git restore --staged" equals
1557 * "git restore --staged --source HEAD"
1559 if (!opts
->from_treeish
&& opts
->checkout_index
&& !opts
->checkout_worktree
)
1560 opts
->from_treeish
= "HEAD";
1563 * From here on, new_branch will contain the branch to be checked out,
1564 * and new_branch_force and new_orphan_branch will tell us which one of
1565 * -b/-B/--orphan is being used.
1567 if (opts
->new_branch_force
)
1568 opts
->new_branch
= opts
->new_branch_force
;
1570 if (opts
->new_orphan_branch
)
1571 opts
->new_branch
= opts
->new_orphan_branch
;
1573 /* --track without -b/-B/--orphan should DWIM */
1574 if (opts
->track
!= BRANCH_TRACK_UNSPECIFIED
&& !opts
->new_branch
) {
1575 const char *argv0
= argv
[0];
1576 if (!argc
|| !strcmp(argv0
, "--"))
1577 die(_("--track needs a branch name"));
1578 skip_prefix(argv0
, "refs/", &argv0
);
1579 skip_prefix(argv0
, "remotes/", &argv0
);
1580 argv0
= strchr(argv0
, '/');
1581 if (!argv0
|| !argv0
[1])
1582 die(_("missing branch name; try -b"));
1583 opts
->new_branch
= argv0
+ 1;
1587 * Extract branch name from command line arguments, so
1588 * all that is left is pathspecs.
1592 * 1) git checkout <tree> -- [<paths>]
1593 * 2) git checkout -- [<paths>]
1594 * 3) git checkout <something> [<paths>]
1596 * including "last branch" syntax and DWIM-ery for names of
1597 * remote branches, erroring out for invalid or ambiguous cases.
1599 if (argc
&& opts
->accept_ref
) {
1600 struct object_id rev
;
1602 !opts
->patch_mode
&&
1603 opts
->dwim_new_local_branch
&&
1604 opts
->track
== BRANCH_TRACK_UNSPECIFIED
&&
1606 int n
= parse_branchname_arg(argc
, argv
, dwim_ok
,
1607 &new_branch_info
, opts
, &rev
,
1608 &dwim_remotes_matched
);
1611 } else if (!opts
->accept_ref
&& opts
->from_treeish
) {
1612 struct object_id rev
;
1614 if (get_oid_mb(opts
->from_treeish
, &rev
))
1615 die(_("could not resolve %s"), opts
->from_treeish
);
1617 setup_new_branch_info_and_source_tree(&new_branch_info
,
1619 opts
->from_treeish
);
1621 if (!opts
->source_tree
)
1622 die(_("reference is not a tree: %s"), opts
->from_treeish
);
1626 parse_pathspec(&opts
->pathspec
, 0,
1627 opts
->patch_mode
? PATHSPEC_PREFIX_ORIGIN
: 0,
1630 if (!opts
->pathspec
.nr
)
1631 die(_("invalid path specification"));
1634 * Try to give more helpful suggestion.
1635 * new_branch && argc > 1 will be caught later.
1637 if (opts
->new_branch
&& argc
== 1)
1638 die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),
1639 argv
[0], opts
->new_branch
);
1641 if (opts
->force_detach
)
1642 die(_("git checkout: --detach does not take a path argument '%s'"),
1646 if (opts
->pathspec_from_file
) {
1647 if (opts
->pathspec
.nr
)
1648 die(_("--pathspec-from-file is incompatible with pathspec arguments"));
1650 if (opts
->force_detach
)
1651 die(_("--pathspec-from-file is incompatible with --detach"));
1653 if (opts
->patch_mode
)
1654 die(_("--pathspec-from-file is incompatible with --patch"));
1656 parse_pathspec_file(&opts
->pathspec
, 0,
1658 prefix
, opts
->pathspec_from_file
, opts
->pathspec_file_nul
);
1659 } else if (opts
->pathspec_file_nul
) {
1660 die(_("--pathspec-file-nul requires --pathspec-from-file"));
1663 if (opts
->pathspec
.nr
) {
1664 if (1 < !!opts
->writeout_stage
+ !!opts
->force
+ !!opts
->merge
)
1665 die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
1666 "checking out of the index."));
1668 if (opts
->accept_pathspec
&& !opts
->empty_pathspec_ok
&&
1669 !opts
->patch_mode
) /* patch mode is special */
1670 die(_("you must specify path(s) to restore"));
1673 if (opts
->new_branch
) {
1674 struct strbuf buf
= STRBUF_INIT
;
1676 if (opts
->new_branch_force
)
1677 opts
->branch_exists
= validate_branchname(opts
->new_branch
, &buf
);
1679 opts
->branch_exists
=
1680 validate_new_branchname(opts
->new_branch
, &buf
, 0);
1681 strbuf_release(&buf
);
1685 if (opts
->patch_mode
|| opts
->pathspec
.nr
) {
1686 int ret
= checkout_paths(opts
, new_branch_info
.name
);
1687 if (ret
&& dwim_remotes_matched
> 1 &&
1688 advice_checkout_ambiguous_remote_branch_name
)
1689 advise(_("'%s' matched more than one remote tracking branch.\n"
1690 "We found %d remotes with a reference that matched. So we fell back\n"
1691 "on trying to resolve the argument as a path, but failed there too!\n"
1693 "If you meant to check out a remote tracking branch on, e.g. 'origin',\n"
1694 "you can do so by fully qualifying the name with the --track option:\n"
1696 " git checkout --track origin/<name>\n"
1698 "If you'd like to always have checkouts of an ambiguous <name> prefer\n"
1699 "one remote, e.g. the 'origin' remote, consider setting\n"
1700 "checkout.defaultRemote=origin in your config."),
1702 dwim_remotes_matched
);
1705 return checkout_branch(opts
, &new_branch_info
);
1709 int cmd_checkout(int argc
, const char **argv
, const char *prefix
)
1711 struct checkout_opts opts
;
1712 struct option
*options
;
1713 struct option checkout_options
[] = {
1714 OPT_STRING('b', NULL
, &opts
.new_branch
, N_("branch"),
1715 N_("create and checkout a new branch")),
1716 OPT_STRING('B', NULL
, &opts
.new_branch_force
, N_("branch"),
1717 N_("create/reset and checkout a branch")),
1718 OPT_BOOL('l', NULL
, &opts
.new_branch_log
, N_("create reflog for new branch")),
1719 OPT_BOOL(0, "guess", &opts
.dwim_new_local_branch
,
1720 N_("second guess 'git checkout <no-such-branch>' (default)")),
1721 OPT_BOOL(0, "overlay", &opts
.overlay_mode
, N_("use overlay mode (default)")),
1726 memset(&opts
, 0, sizeof(opts
));
1727 opts
.dwim_new_local_branch
= 1;
1728 opts
.switch_branch_doing_nothing_is_ok
= 1;
1729 opts
.only_merge_on_switching_branches
= 0;
1730 opts
.accept_ref
= 1;
1731 opts
.accept_pathspec
= 1;
1732 opts
.implicit_detach
= 1;
1733 opts
.can_switch_when_in_progress
= 1;
1734 opts
.orphan_from_empty_tree
= 0;
1735 opts
.empty_pathspec_ok
= 1;
1736 opts
.overlay_mode
= -1;
1737 opts
.checkout_index
= -2; /* default on */
1738 opts
.checkout_worktree
= -2; /* default on */
1740 if (argc
== 3 && !strcmp(argv
[1], "-b")) {
1742 * User ran 'git checkout -b <branch>' and expects
1743 * the same behavior as 'git switch -c <branch>'.
1745 opts
.switch_branch_doing_nothing_is_ok
= 0;
1746 opts
.only_merge_on_switching_branches
= 1;
1749 options
= parse_options_dup(checkout_options
);
1750 options
= add_common_options(&opts
, options
);
1751 options
= add_common_switch_branch_options(&opts
, options
);
1752 options
= add_checkout_path_options(&opts
, options
);
1754 ret
= checkout_main(argc
, argv
, prefix
, &opts
,
1755 options
, checkout_usage
);
1756 FREE_AND_NULL(options
);
1760 int cmd_switch(int argc
, const char **argv
, const char *prefix
)
1762 struct checkout_opts opts
;
1763 struct option
*options
= NULL
;
1764 struct option switch_options
[] = {
1765 OPT_STRING('c', "create", &opts
.new_branch
, N_("branch"),
1766 N_("create and switch to a new branch")),
1767 OPT_STRING('C', "force-create", &opts
.new_branch_force
, N_("branch"),
1768 N_("create/reset and switch to a branch")),
1769 OPT_BOOL(0, "guess", &opts
.dwim_new_local_branch
,
1770 N_("second guess 'git switch <no-such-branch>'")),
1771 OPT_BOOL(0, "discard-changes", &opts
.discard_changes
,
1772 N_("throw away local modifications")),
1777 memset(&opts
, 0, sizeof(opts
));
1778 opts
.dwim_new_local_branch
= 1;
1779 opts
.accept_ref
= 1;
1780 opts
.accept_pathspec
= 0;
1781 opts
.switch_branch_doing_nothing_is_ok
= 0;
1782 opts
.only_merge_on_switching_branches
= 1;
1783 opts
.implicit_detach
= 0;
1784 opts
.can_switch_when_in_progress
= 0;
1785 opts
.orphan_from_empty_tree
= 1;
1786 opts
.overlay_mode
= -1;
1788 options
= parse_options_dup(switch_options
);
1789 options
= add_common_options(&opts
, options
);
1790 options
= add_common_switch_branch_options(&opts
, options
);
1792 ret
= checkout_main(argc
, argv
, prefix
, &opts
,
1793 options
, switch_branch_usage
);
1794 FREE_AND_NULL(options
);
1798 int cmd_restore(int argc
, const char **argv
, const char *prefix
)
1800 struct checkout_opts opts
;
1801 struct option
*options
;
1802 struct option restore_options
[] = {
1803 OPT_STRING('s', "source", &opts
.from_treeish
, "<tree-ish>",
1804 N_("which tree-ish to checkout from")),
1805 OPT_BOOL('S', "staged", &opts
.checkout_index
,
1806 N_("restore the index")),
1807 OPT_BOOL('W', "worktree", &opts
.checkout_worktree
,
1808 N_("restore the working tree (default)")),
1809 OPT_BOOL(0, "ignore-unmerged", &opts
.ignore_unmerged
,
1810 N_("ignore unmerged entries")),
1811 OPT_BOOL(0, "overlay", &opts
.overlay_mode
, N_("use overlay mode")),
1816 memset(&opts
, 0, sizeof(opts
));
1817 opts
.accept_ref
= 0;
1818 opts
.accept_pathspec
= 1;
1819 opts
.empty_pathspec_ok
= 0;
1820 opts
.overlay_mode
= 0;
1821 opts
.checkout_index
= -1; /* default off */
1822 opts
.checkout_worktree
= -2; /* default on */
1823 opts
.ignore_unmerged_opt
= "--ignore-unmerged";
1825 options
= parse_options_dup(restore_options
);
1826 options
= add_common_options(&opts
, options
);
1827 options
= add_checkout_path_options(&opts
, options
);
1829 ret
= checkout_main(argc
, argv
, prefix
, &opts
,
1830 options
, restore_usage
);
1831 FREE_AND_NULL(options
);