]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/checkout.c
t/lib-credential: clean additional credential
[thirdparty/git.git] / builtin / checkout.c
1 #define USE_THE_INDEX_VARIABLE
2 #include "builtin.h"
3 #include "advice.h"
4 #include "branch.h"
5 #include "cache-tree.h"
6 #include "checkout.h"
7 #include "commit.h"
8 #include "config.h"
9 #include "diff.h"
10 #include "dir.h"
11 #include "environment.h"
12 #include "gettext.h"
13 #include "hex.h"
14 #include "hook.h"
15 #include "merge-ll.h"
16 #include "lockfile.h"
17 #include "mem-pool.h"
18 #include "merge-recursive.h"
19 #include "object-name.h"
20 #include "object-store-ll.h"
21 #include "parse-options.h"
22 #include "path.h"
23 #include "preload-index.h"
24 #include "read-cache.h"
25 #include "refs.h"
26 #include "remote.h"
27 #include "resolve-undo.h"
28 #include "revision.h"
29 #include "setup.h"
30 #include "submodule.h"
31 #include "symlinks.h"
32 #include "trace2.h"
33 #include "tree.h"
34 #include "tree-walk.h"
35 #include "unpack-trees.h"
36 #include "wt-status.h"
37 #include "xdiff-interface.h"
38 #include "entry.h"
39 #include "parallel-checkout.h"
40 #include "add-interactive.h"
41
42 static const char * const checkout_usage[] = {
43 N_("git checkout [<options>] <branch>"),
44 N_("git checkout [<options>] [<branch>] -- <file>..."),
45 NULL,
46 };
47
48 static const char * const switch_branch_usage[] = {
49 N_("git switch [<options>] [<branch>]"),
50 NULL,
51 };
52
53 static const char * const restore_usage[] = {
54 N_("git restore [<options>] [--source=<branch>] <file>..."),
55 NULL,
56 };
57
58 struct checkout_opts {
59 int patch_mode;
60 int quiet;
61 int merge;
62 int force;
63 int force_detach;
64 int implicit_detach;
65 int writeout_stage;
66 int overwrite_ignore;
67 int ignore_skipworktree;
68 int ignore_other_worktrees;
69 int show_progress;
70 int count_checkout_paths;
71 int overlay_mode;
72 int dwim_new_local_branch;
73 int discard_changes;
74 int accept_ref;
75 int accept_pathspec;
76 int switch_branch_doing_nothing_is_ok;
77 int only_merge_on_switching_branches;
78 int can_switch_when_in_progress;
79 int orphan_from_empty_tree;
80 int empty_pathspec_ok;
81 int checkout_index;
82 int checkout_worktree;
83 const char *ignore_unmerged_opt;
84 int ignore_unmerged;
85 int pathspec_file_nul;
86 char *pathspec_from_file;
87
88 const char *new_branch;
89 const char *new_branch_force;
90 const char *new_orphan_branch;
91 int new_branch_log;
92 enum branch_track track;
93 struct diff_options diff_options;
94 char *conflict_style;
95
96 int branch_exists;
97 const char *prefix;
98 struct pathspec pathspec;
99 const char *from_treeish;
100 struct tree *source_tree;
101 };
102
103 struct branch_info {
104 char *name; /* The short name used */
105 char *path; /* The full name of a real branch */
106 struct commit *commit; /* The named commit */
107 char *refname; /* The full name of the ref being checked out. */
108 struct object_id oid; /* The object ID of the commit being checked out. */
109 /*
110 * if not null the branch is detached because it's already
111 * checked out in this checkout
112 */
113 char *checkout;
114 };
115
116 static void branch_info_release(struct branch_info *info)
117 {
118 free(info->name);
119 free(info->path);
120 free(info->refname);
121 free(info->checkout);
122 }
123
124 static int post_checkout_hook(struct commit *old_commit, struct commit *new_commit,
125 int changed)
126 {
127 return run_hooks_l("post-checkout",
128 oid_to_hex(old_commit ? &old_commit->object.oid : null_oid()),
129 oid_to_hex(new_commit ? &new_commit->object.oid : null_oid()),
130 changed ? "1" : "0", NULL);
131 /* "new_commit" can be NULL when checking out from the index before
132 a commit exists. */
133
134 }
135
136 static int update_some(const struct object_id *oid, struct strbuf *base,
137 const char *pathname, unsigned mode, void *context UNUSED)
138 {
139 int len;
140 struct cache_entry *ce;
141 int pos;
142
143 if (S_ISDIR(mode))
144 return READ_TREE_RECURSIVE;
145
146 len = base->len + strlen(pathname);
147 ce = make_empty_cache_entry(&the_index, len);
148 oidcpy(&ce->oid, oid);
149 memcpy(ce->name, base->buf, base->len);
150 memcpy(ce->name + base->len, pathname, len - base->len);
151 ce->ce_flags = create_ce_flags(0) | CE_UPDATE;
152 ce->ce_namelen = len;
153 ce->ce_mode = create_ce_mode(mode);
154
155 /*
156 * If the entry is the same as the current index, we can leave the old
157 * entry in place. Whether it is UPTODATE or not, checkout_entry will
158 * do the right thing.
159 */
160 pos = index_name_pos(&the_index, ce->name, ce->ce_namelen);
161 if (pos >= 0) {
162 struct cache_entry *old = the_index.cache[pos];
163 if (ce->ce_mode == old->ce_mode &&
164 !ce_intent_to_add(old) &&
165 oideq(&ce->oid, &old->oid)) {
166 old->ce_flags |= CE_UPDATE;
167 discard_cache_entry(ce);
168 return 0;
169 }
170 }
171
172 add_index_entry(&the_index, ce,
173 ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
174 return 0;
175 }
176
177 static int read_tree_some(struct tree *tree, const struct pathspec *pathspec)
178 {
179 read_tree(the_repository, tree,
180 pathspec, update_some, NULL);
181
182 /* update the index with the given tree's info
183 * for all args, expanding wildcards, and exit
184 * with any non-zero return code.
185 */
186 return 0;
187 }
188
189 static int skip_same_name(const struct cache_entry *ce, int pos)
190 {
191 while (++pos < the_index.cache_nr &&
192 !strcmp(the_index.cache[pos]->name, ce->name))
193 ; /* skip */
194 return pos;
195 }
196
197 static int check_stage(int stage, const struct cache_entry *ce, int pos,
198 int overlay_mode)
199 {
200 while (pos < the_index.cache_nr &&
201 !strcmp(the_index.cache[pos]->name, ce->name)) {
202 if (ce_stage(the_index.cache[pos]) == stage)
203 return 0;
204 pos++;
205 }
206 if (!overlay_mode)
207 return 0;
208 if (stage == 2)
209 return error(_("path '%s' does not have our version"), ce->name);
210 else
211 return error(_("path '%s' does not have their version"), ce->name);
212 }
213
214 static int check_stages(unsigned stages, const struct cache_entry *ce, int pos)
215 {
216 unsigned seen = 0;
217 const char *name = ce->name;
218
219 while (pos < the_index.cache_nr) {
220 ce = the_index.cache[pos];
221 if (strcmp(name, ce->name))
222 break;
223 seen |= (1 << ce_stage(ce));
224 pos++;
225 }
226 if ((stages & seen) != stages)
227 return error(_("path '%s' does not have all necessary versions"),
228 name);
229 return 0;
230 }
231
232 static int checkout_stage(int stage, const struct cache_entry *ce, int pos,
233 const struct checkout *state, int *nr_checkouts,
234 int overlay_mode)
235 {
236 while (pos < the_index.cache_nr &&
237 !strcmp(the_index.cache[pos]->name, ce->name)) {
238 if (ce_stage(the_index.cache[pos]) == stage)
239 return checkout_entry(the_index.cache[pos], state,
240 NULL, nr_checkouts);
241 pos++;
242 }
243 if (!overlay_mode) {
244 unlink_entry(ce, NULL);
245 return 0;
246 }
247 if (stage == 2)
248 return error(_("path '%s' does not have our version"), ce->name);
249 else
250 return error(_("path '%s' does not have their version"), ce->name);
251 }
252
253 static int checkout_merged(int pos, const struct checkout *state,
254 int *nr_checkouts, struct mem_pool *ce_mem_pool)
255 {
256 struct cache_entry *ce = the_index.cache[pos];
257 const char *path = ce->name;
258 mmfile_t ancestor, ours, theirs;
259 enum ll_merge_result merge_status;
260 int status;
261 struct object_id oid;
262 mmbuffer_t result_buf;
263 struct object_id threeway[3];
264 unsigned mode = 0;
265 struct ll_merge_options ll_opts;
266 int renormalize = 0;
267
268 memset(threeway, 0, sizeof(threeway));
269 while (pos < the_index.cache_nr) {
270 int stage;
271 stage = ce_stage(ce);
272 if (!stage || strcmp(path, ce->name))
273 break;
274 oidcpy(&threeway[stage - 1], &ce->oid);
275 if (stage == 2)
276 mode = create_ce_mode(ce->ce_mode);
277 pos++;
278 ce = the_index.cache[pos];
279 }
280 if (is_null_oid(&threeway[1]) || is_null_oid(&threeway[2]))
281 return error(_("path '%s' does not have necessary versions"), path);
282
283 read_mmblob(&ancestor, &threeway[0]);
284 read_mmblob(&ours, &threeway[1]);
285 read_mmblob(&theirs, &threeway[2]);
286
287 memset(&ll_opts, 0, sizeof(ll_opts));
288 git_config_get_bool("merge.renormalize", &renormalize);
289 ll_opts.renormalize = renormalize;
290 merge_status = ll_merge(&result_buf, path, &ancestor, "base",
291 &ours, "ours", &theirs, "theirs",
292 state->istate, &ll_opts);
293 free(ancestor.ptr);
294 free(ours.ptr);
295 free(theirs.ptr);
296 if (merge_status == LL_MERGE_BINARY_CONFLICT)
297 warning("Cannot merge binary files: %s (%s vs. %s)",
298 path, "ours", "theirs");
299 if (merge_status < 0 || !result_buf.ptr) {
300 free(result_buf.ptr);
301 return error(_("path '%s': cannot merge"), path);
302 }
303
304 /*
305 * NEEDSWORK:
306 * There is absolutely no reason to write this as a blob object
307 * and create a phony cache entry. This hack is primarily to get
308 * to the write_entry() machinery that massages the contents to
309 * work-tree format and writes out which only allows it for a
310 * cache entry. The code in write_entry() needs to be refactored
311 * to allow us to feed a <buffer, size, mode> instead of a cache
312 * entry. Such a refactoring would help merge_recursive as well
313 * (it also writes the merge result to the object database even
314 * when it may contain conflicts).
315 */
316 if (write_object_file(result_buf.ptr, result_buf.size, OBJ_BLOB, &oid))
317 die(_("Unable to add merge result for '%s'"), path);
318 free(result_buf.ptr);
319 ce = make_transient_cache_entry(mode, &oid, path, 2, ce_mem_pool);
320 if (!ce)
321 die(_("make_cache_entry failed for path '%s'"), path);
322 status = checkout_entry(ce, state, NULL, nr_checkouts);
323 return status;
324 }
325
326 static void mark_ce_for_checkout_overlay(struct cache_entry *ce,
327 char *ps_matched,
328 const struct checkout_opts *opts)
329 {
330 ce->ce_flags &= ~CE_MATCHED;
331 if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
332 return;
333 if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
334 /*
335 * "git checkout tree-ish -- path", but this entry
336 * is in the original index but is not in tree-ish
337 * or does not match the pathspec; it will not be
338 * checked out to the working tree. We will not do
339 * anything to this entry at all.
340 */
341 return;
342 /*
343 * Either this entry came from the tree-ish we are
344 * checking the paths out of, or we are checking out
345 * of the index.
346 *
347 * If it comes from the tree-ish, we already know it
348 * matches the pathspec and could just stamp
349 * CE_MATCHED to it from update_some(). But we still
350 * need ps_matched and read_tree (and
351 * eventually tree_entry_interesting) cannot fill
352 * ps_matched yet. Once it can, we can avoid calling
353 * match_pathspec() for _all_ entries when
354 * opts->source_tree != NULL.
355 */
356 if (ce_path_match(&the_index, ce, &opts->pathspec, ps_matched))
357 ce->ce_flags |= CE_MATCHED;
358 }
359
360 static void mark_ce_for_checkout_no_overlay(struct cache_entry *ce,
361 char *ps_matched,
362 const struct checkout_opts *opts)
363 {
364 ce->ce_flags &= ~CE_MATCHED;
365 if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
366 return;
367 if (ce_path_match(&the_index, ce, &opts->pathspec, ps_matched)) {
368 ce->ce_flags |= CE_MATCHED;
369 if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
370 /*
371 * In overlay mode, but the path is not in
372 * tree-ish, which means we should remove it
373 * from the index and the working tree.
374 */
375 ce->ce_flags |= CE_REMOVE | CE_WT_REMOVE;
376 }
377 }
378
379 static int checkout_worktree(const struct checkout_opts *opts,
380 const struct branch_info *info)
381 {
382 struct checkout state = CHECKOUT_INIT;
383 int nr_checkouts = 0, nr_unmerged = 0;
384 int errs = 0;
385 int pos;
386 int pc_workers, pc_threshold;
387 struct mem_pool ce_mem_pool;
388
389 state.force = 1;
390 state.refresh_cache = 1;
391 state.istate = &the_index;
392
393 mem_pool_init(&ce_mem_pool, 0);
394 get_parallel_checkout_configs(&pc_workers, &pc_threshold);
395 init_checkout_metadata(&state.meta, info->refname,
396 info->commit ? &info->commit->object.oid : &info->oid,
397 NULL);
398
399 enable_delayed_checkout(&state);
400
401 if (pc_workers > 1)
402 init_parallel_checkout();
403
404 for (pos = 0; pos < the_index.cache_nr; pos++) {
405 struct cache_entry *ce = the_index.cache[pos];
406 if (ce->ce_flags & CE_MATCHED) {
407 if (!ce_stage(ce)) {
408 errs |= checkout_entry(ce, &state,
409 NULL, &nr_checkouts);
410 continue;
411 }
412 if (opts->writeout_stage)
413 errs |= checkout_stage(opts->writeout_stage,
414 ce, pos,
415 &state,
416 &nr_checkouts, opts->overlay_mode);
417 else if (opts->merge)
418 errs |= checkout_merged(pos, &state,
419 &nr_unmerged,
420 &ce_mem_pool);
421 pos = skip_same_name(ce, pos) - 1;
422 }
423 }
424 if (pc_workers > 1)
425 errs |= run_parallel_checkout(&state, pc_workers, pc_threshold,
426 NULL, NULL);
427 mem_pool_discard(&ce_mem_pool, should_validate_cache_entries());
428 remove_marked_cache_entries(&the_index, 1);
429 remove_scheduled_dirs();
430 errs |= finish_delayed_checkout(&state, opts->show_progress);
431
432 if (opts->count_checkout_paths) {
433 if (nr_unmerged)
434 fprintf_ln(stderr, Q_("Recreated %d merge conflict",
435 "Recreated %d merge conflicts",
436 nr_unmerged),
437 nr_unmerged);
438 if (opts->source_tree)
439 fprintf_ln(stderr, Q_("Updated %d path from %s",
440 "Updated %d paths from %s",
441 nr_checkouts),
442 nr_checkouts,
443 repo_find_unique_abbrev(the_repository, &opts->source_tree->object.oid,
444 DEFAULT_ABBREV));
445 else if (!nr_unmerged || nr_checkouts)
446 fprintf_ln(stderr, Q_("Updated %d path from the index",
447 "Updated %d paths from the index",
448 nr_checkouts),
449 nr_checkouts);
450 }
451
452 return errs;
453 }
454
455 static int checkout_paths(const struct checkout_opts *opts,
456 const struct branch_info *new_branch_info)
457 {
458 int pos;
459 static char *ps_matched;
460 struct object_id rev;
461 struct commit *head;
462 int errs = 0;
463 struct lock_file lock_file = LOCK_INIT;
464 int checkout_index;
465
466 trace2_cmd_mode(opts->patch_mode ? "patch" : "path");
467
468 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
469 die(_("'%s' cannot be used with updating paths"), "--track");
470
471 if (opts->new_branch_log)
472 die(_("'%s' cannot be used with updating paths"), "-l");
473
474 if (opts->ignore_unmerged && opts->patch_mode)
475 die(_("'%s' cannot be used with updating paths"),
476 opts->ignore_unmerged_opt);
477
478 if (opts->force_detach)
479 die(_("'%s' cannot be used with updating paths"), "--detach");
480
481 if (opts->merge && opts->patch_mode)
482 die(_("options '%s' and '%s' cannot be used together"), "--merge", "--patch");
483
484 if (opts->ignore_unmerged && opts->merge)
485 die(_("options '%s' and '%s' cannot be used together"),
486 opts->ignore_unmerged_opt, "-m");
487
488 if (opts->new_branch)
489 die(_("Cannot update paths and switch to branch '%s' at the same time."),
490 opts->new_branch);
491
492 if (!opts->checkout_worktree && !opts->checkout_index)
493 die(_("neither '%s' or '%s' is specified"),
494 "--staged", "--worktree");
495
496 if (!opts->checkout_worktree && !opts->from_treeish)
497 die(_("'%s' must be used when '%s' is not specified"),
498 "--worktree", "--source");
499
500 /*
501 * Reject --staged option to the restore command when combined with
502 * merge-related options. Use the accept_ref flag to distinguish it
503 * from the checkout command, which does not accept --staged anyway.
504 *
505 * `restore --ours|--theirs --worktree --staged` could mean resolving
506 * conflicted paths to one side in both the worktree and the index,
507 * but does not currently.
508 *
509 * `restore --merge|--conflict=<style>` already recreates conflicts
510 * in both the worktree and the index, so adding --staged would be
511 * meaningless.
512 */
513 if (!opts->accept_ref && opts->checkout_index) {
514 if (opts->writeout_stage)
515 die(_("'%s' or '%s' cannot be used with %s"),
516 "--ours", "--theirs", "--staged");
517
518 if (opts->merge)
519 die(_("'%s' or '%s' cannot be used with %s"),
520 "--merge", "--conflict", "--staged");
521 }
522
523 /*
524 * recreating unmerged index entries and writing out data from
525 * unmerged index entries would make no sense when checking out
526 * of a tree-ish.
527 */
528 if ((opts->merge || opts->writeout_stage) && opts->source_tree)
529 die(_("'%s', '%s', or '%s' cannot be used when checking out of a tree"),
530 "--merge", "--ours", "--theirs");
531
532 if (opts->patch_mode) {
533 enum add_p_mode patch_mode;
534 const char *rev = new_branch_info->name;
535 char rev_oid[GIT_MAX_HEXSZ + 1];
536
537 /*
538 * Since rev can be in the form of `<a>...<b>` (which is not
539 * recognized by diff-index), we will always replace the name
540 * with the hex of the commit (whether it's in `...` form or
541 * not) for the run_add_interactive() machinery to work
542 * properly. However, there is special logic for the HEAD case
543 * so we mustn't replace that. Also, when we were given a
544 * tree-object, new_branch_info->commit would be NULL, but we
545 * do not have to do any replacement, either.
546 */
547 if (rev && new_branch_info->commit && strcmp(rev, "HEAD"))
548 rev = oid_to_hex_r(rev_oid, &new_branch_info->commit->object.oid);
549
550 if (opts->checkout_index && opts->checkout_worktree)
551 patch_mode = ADD_P_CHECKOUT;
552 else if (opts->checkout_index && !opts->checkout_worktree)
553 patch_mode = ADD_P_RESET;
554 else if (!opts->checkout_index && opts->checkout_worktree)
555 patch_mode = ADD_P_WORKTREE;
556 else
557 BUG("either flag must have been set, worktree=%d, index=%d",
558 opts->checkout_worktree, opts->checkout_index);
559 return !!run_add_p(the_repository, patch_mode, rev,
560 &opts->pathspec);
561 }
562
563 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
564 if (repo_read_index_preload(the_repository, &opts->pathspec, 0) < 0)
565 return error(_("index file corrupt"));
566
567 if (opts->source_tree)
568 read_tree_some(opts->source_tree, &opts->pathspec);
569 if (opts->merge)
570 unmerge_index(&the_index, &opts->pathspec, CE_MATCHED);
571
572 ps_matched = xcalloc(opts->pathspec.nr, 1);
573
574 /*
575 * Make sure all pathspecs participated in locating the paths
576 * to be checked out.
577 */
578 for (pos = 0; pos < the_index.cache_nr; pos++)
579 if (opts->overlay_mode)
580 mark_ce_for_checkout_overlay(the_index.cache[pos],
581 ps_matched,
582 opts);
583 else
584 mark_ce_for_checkout_no_overlay(the_index.cache[pos],
585 ps_matched,
586 opts);
587
588 if (report_path_error(ps_matched, &opts->pathspec)) {
589 free(ps_matched);
590 return 1;
591 }
592 free(ps_matched);
593
594 /* Any unmerged paths? */
595 for (pos = 0; pos < the_index.cache_nr; pos++) {
596 const struct cache_entry *ce = the_index.cache[pos];
597 if (ce->ce_flags & CE_MATCHED) {
598 if (!ce_stage(ce))
599 continue;
600 if (opts->ignore_unmerged) {
601 if (!opts->quiet)
602 warning(_("path '%s' is unmerged"), ce->name);
603 } else if (opts->writeout_stage) {
604 errs |= check_stage(opts->writeout_stage, ce, pos, opts->overlay_mode);
605 } else if (opts->merge) {
606 errs |= check_stages((1<<2) | (1<<3), ce, pos);
607 } else {
608 errs = 1;
609 error(_("path '%s' is unmerged"), ce->name);
610 }
611 pos = skip_same_name(ce, pos) - 1;
612 }
613 }
614 if (errs)
615 return 1;
616
617 /* Now we are committed to check them out */
618 if (opts->checkout_worktree)
619 errs |= checkout_worktree(opts, new_branch_info);
620 else
621 remove_marked_cache_entries(&the_index, 1);
622
623 /*
624 * Allow updating the index when checking out from the index.
625 * This is to save new stat info.
626 */
627 if (opts->checkout_worktree && !opts->checkout_index && !opts->source_tree)
628 checkout_index = 1;
629 else
630 checkout_index = opts->checkout_index;
631
632 if (checkout_index) {
633 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
634 die(_("unable to write new index file"));
635 } else {
636 /*
637 * NEEDSWORK: if --worktree is not specified, we
638 * should save stat info of checked out files in the
639 * index to avoid the next (potentially costly)
640 * refresh. But it's a bit tricker to do...
641 */
642 rollback_lock_file(&lock_file);
643 }
644
645 read_ref_full("HEAD", 0, &rev, NULL);
646 head = lookup_commit_reference_gently(the_repository, &rev, 1);
647
648 errs |= post_checkout_hook(head, head, 0);
649 return errs;
650 }
651
652 static void show_local_changes(struct object *head,
653 const struct diff_options *opts)
654 {
655 struct rev_info rev;
656 /* I think we want full paths, even if we're in a subdirectory. */
657 repo_init_revisions(the_repository, &rev, NULL);
658 rev.diffopt.flags = opts->flags;
659 rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
660 rev.diffopt.flags.recursive = 1;
661 diff_setup_done(&rev.diffopt);
662 add_pending_object(&rev, head, NULL);
663 run_diff_index(&rev, 0);
664 release_revisions(&rev);
665 }
666
667 static void describe_detached_head(const char *msg, struct commit *commit)
668 {
669 struct strbuf sb = STRBUF_INIT;
670
671 if (!repo_parse_commit(the_repository, commit))
672 pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb);
673 if (print_sha1_ellipsis()) {
674 fprintf(stderr, "%s %s... %s\n", msg,
675 repo_find_unique_abbrev(the_repository, &commit->object.oid, DEFAULT_ABBREV),
676 sb.buf);
677 } else {
678 fprintf(stderr, "%s %s %s\n", msg,
679 repo_find_unique_abbrev(the_repository, &commit->object.oid, DEFAULT_ABBREV),
680 sb.buf);
681 }
682 strbuf_release(&sb);
683 }
684
685 static int reset_tree(struct tree *tree, const struct checkout_opts *o,
686 int worktree, int *writeout_error,
687 struct branch_info *info)
688 {
689 struct unpack_trees_options opts;
690 struct tree_desc tree_desc;
691
692 memset(&opts, 0, sizeof(opts));
693 opts.head_idx = -1;
694 opts.update = worktree;
695 opts.skip_unmerged = !worktree;
696 opts.reset = o->force ? UNPACK_RESET_OVERWRITE_UNTRACKED :
697 UNPACK_RESET_PROTECT_UNTRACKED;
698 opts.preserve_ignored = (!o->force && !o->overwrite_ignore);
699 opts.merge = 1;
700 opts.fn = oneway_merge;
701 opts.verbose_update = o->show_progress;
702 opts.src_index = &the_index;
703 opts.dst_index = &the_index;
704 init_checkout_metadata(&opts.meta, info->refname,
705 info->commit ? &info->commit->object.oid : null_oid(),
706 NULL);
707 parse_tree(tree);
708 init_tree_desc(&tree_desc, tree->buffer, tree->size);
709 switch (unpack_trees(1, &tree_desc, &opts)) {
710 case -2:
711 *writeout_error = 1;
712 /*
713 * We return 0 nevertheless, as the index is all right
714 * and more importantly we have made best efforts to
715 * update paths in the work tree, and we cannot revert
716 * them.
717 */
718 /* fallthrough */
719 case 0:
720 return 0;
721 default:
722 return 128;
723 }
724 }
725
726 static void setup_branch_path(struct branch_info *branch)
727 {
728 struct strbuf buf = STRBUF_INIT;
729
730 /*
731 * If this is a ref, resolve it; otherwise, look up the OID for our
732 * expression. Failure here is okay.
733 */
734 if (!repo_dwim_ref(the_repository, branch->name, strlen(branch->name),
735 &branch->oid, &branch->refname, 0))
736 repo_get_oid_committish(the_repository, branch->name, &branch->oid);
737
738 strbuf_branchname(&buf, branch->name, INTERPRET_BRANCH_LOCAL);
739 if (strcmp(buf.buf, branch->name)) {
740 free(branch->name);
741 branch->name = xstrdup(buf.buf);
742 }
743 strbuf_splice(&buf, 0, 0, "refs/heads/", 11);
744 free(branch->path);
745 branch->path = strbuf_detach(&buf, NULL);
746 }
747
748 static void init_topts(struct unpack_trees_options *topts, int merge,
749 int show_progress, int overwrite_ignore,
750 struct commit *old_commit)
751 {
752 memset(topts, 0, sizeof(*topts));
753 topts->head_idx = -1;
754 topts->src_index = &the_index;
755 topts->dst_index = &the_index;
756
757 setup_unpack_trees_porcelain(topts, "checkout");
758
759 topts->initial_checkout = is_index_unborn(&the_index);
760 topts->update = 1;
761 topts->merge = 1;
762 topts->quiet = merge && old_commit;
763 topts->verbose_update = show_progress;
764 topts->fn = twoway_merge;
765 topts->preserve_ignored = !overwrite_ignore;
766 }
767
768 static int merge_working_tree(const struct checkout_opts *opts,
769 struct branch_info *old_branch_info,
770 struct branch_info *new_branch_info,
771 int *writeout_error)
772 {
773 int ret;
774 struct lock_file lock_file = LOCK_INIT;
775 struct tree *new_tree;
776
777 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
778 if (repo_read_index_preload(the_repository, NULL, 0) < 0)
779 return error(_("index file corrupt"));
780
781 resolve_undo_clear_index(&the_index);
782 if (opts->new_orphan_branch && opts->orphan_from_empty_tree) {
783 if (new_branch_info->commit)
784 BUG("'switch --orphan' should never accept a commit as starting point");
785 new_tree = parse_tree_indirect(the_hash_algo->empty_tree);
786 } else
787 new_tree = repo_get_commit_tree(the_repository,
788 new_branch_info->commit);
789 if (opts->discard_changes) {
790 ret = reset_tree(new_tree, opts, 1, writeout_error, new_branch_info);
791 if (ret)
792 return ret;
793 } else {
794 struct tree_desc trees[2];
795 struct tree *tree;
796 struct unpack_trees_options topts;
797 const struct object_id *old_commit_oid;
798
799 refresh_index(&the_index, REFRESH_QUIET, NULL, NULL, NULL);
800
801 if (unmerged_index(&the_index)) {
802 error(_("you need to resolve your current index first"));
803 return 1;
804 }
805
806 /* 2-way merge to the new branch */
807 init_topts(&topts, opts->merge, opts->show_progress,
808 opts->overwrite_ignore, old_branch_info->commit);
809 init_checkout_metadata(&topts.meta, new_branch_info->refname,
810 new_branch_info->commit ?
811 &new_branch_info->commit->object.oid :
812 &new_branch_info->oid, NULL);
813
814 old_commit_oid = old_branch_info->commit ?
815 &old_branch_info->commit->object.oid :
816 the_hash_algo->empty_tree;
817 tree = parse_tree_indirect(old_commit_oid);
818 if (!tree)
819 die(_("unable to parse commit %s"),
820 oid_to_hex(old_commit_oid));
821
822 init_tree_desc(&trees[0], tree->buffer, tree->size);
823 parse_tree(new_tree);
824 tree = new_tree;
825 init_tree_desc(&trees[1], tree->buffer, tree->size);
826
827 ret = unpack_trees(2, trees, &topts);
828 clear_unpack_trees_porcelain(&topts);
829 if (ret == -1) {
830 /*
831 * Unpack couldn't do a trivial merge; either
832 * give up or do a real merge, depending on
833 * whether the merge flag was used.
834 */
835 struct tree *work;
836 struct tree *old_tree;
837 struct merge_options o;
838 struct strbuf sb = STRBUF_INIT;
839 struct strbuf old_commit_shortname = STRBUF_INIT;
840
841 if (!opts->merge)
842 return 1;
843
844 /*
845 * Without old_branch_info->commit, the below is the same as
846 * the two-tree unpack we already tried and failed.
847 */
848 if (!old_branch_info->commit)
849 return 1;
850 old_tree = repo_get_commit_tree(the_repository,
851 old_branch_info->commit);
852
853 if (repo_index_has_changes(the_repository, old_tree, &sb))
854 die(_("cannot continue with staged changes in "
855 "the following files:\n%s"), sb.buf);
856 strbuf_release(&sb);
857
858 /* Do more real merge */
859
860 /*
861 * We update the index fully, then write the
862 * tree from the index, then merge the new
863 * branch with the current tree, with the old
864 * branch as the base. Then we reset the index
865 * (but not the working tree) to the new
866 * branch, leaving the working tree as the
867 * merged version, but skipping unmerged
868 * entries in the index.
869 */
870
871 add_files_to_cache(the_repository, NULL, NULL, 0, 0);
872 init_merge_options(&o, the_repository);
873 o.verbosity = 0;
874 work = write_in_core_index_as_tree(the_repository);
875
876 ret = reset_tree(new_tree,
877 opts, 1,
878 writeout_error, new_branch_info);
879 if (ret)
880 return ret;
881 o.ancestor = old_branch_info->name;
882 if (!old_branch_info->name) {
883 strbuf_add_unique_abbrev(&old_commit_shortname,
884 &old_branch_info->commit->object.oid,
885 DEFAULT_ABBREV);
886 o.ancestor = old_commit_shortname.buf;
887 }
888 o.branch1 = new_branch_info->name;
889 o.branch2 = "local";
890 ret = merge_trees(&o,
891 new_tree,
892 work,
893 old_tree);
894 if (ret < 0)
895 exit(128);
896 ret = reset_tree(new_tree,
897 opts, 0,
898 writeout_error, new_branch_info);
899 strbuf_release(&o.obuf);
900 strbuf_release(&old_commit_shortname);
901 if (ret)
902 return ret;
903 }
904 }
905
906 if (!cache_tree_fully_valid(the_index.cache_tree))
907 cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR);
908
909 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
910 die(_("unable to write new index file"));
911
912 if (!opts->discard_changes && !opts->quiet && new_branch_info->commit)
913 show_local_changes(&new_branch_info->commit->object, &opts->diff_options);
914
915 return 0;
916 }
917
918 static void report_tracking(struct branch_info *new_branch_info)
919 {
920 struct strbuf sb = STRBUF_INIT;
921 struct branch *branch = branch_get(new_branch_info->name);
922
923 if (!format_tracking_info(branch, &sb, AHEAD_BEHIND_FULL, 1))
924 return;
925 fputs(sb.buf, stdout);
926 strbuf_release(&sb);
927 }
928
929 static void update_refs_for_switch(const struct checkout_opts *opts,
930 struct branch_info *old_branch_info,
931 struct branch_info *new_branch_info)
932 {
933 struct strbuf msg = STRBUF_INIT;
934 const char *old_desc, *reflog_msg;
935 if (opts->new_branch) {
936 if (opts->new_orphan_branch) {
937 char *refname;
938
939 refname = mkpathdup("refs/heads/%s", opts->new_orphan_branch);
940 if (opts->new_branch_log &&
941 !should_autocreate_reflog(refname)) {
942 int ret;
943 struct strbuf err = STRBUF_INIT;
944
945 ret = safe_create_reflog(refname, &err);
946 if (ret) {
947 fprintf(stderr, _("Can not do reflog for '%s': %s\n"),
948 opts->new_orphan_branch, err.buf);
949 strbuf_release(&err);
950 free(refname);
951 return;
952 }
953 strbuf_release(&err);
954 }
955 free(refname);
956 }
957 else
958 create_branch(the_repository,
959 opts->new_branch, new_branch_info->name,
960 opts->new_branch_force ? 1 : 0,
961 opts->new_branch_force ? 1 : 0,
962 opts->new_branch_log,
963 opts->quiet,
964 opts->track,
965 0);
966 free(new_branch_info->name);
967 free(new_branch_info->refname);
968 new_branch_info->name = xstrdup(opts->new_branch);
969 setup_branch_path(new_branch_info);
970 }
971
972 old_desc = old_branch_info->name;
973 if (!old_desc && old_branch_info->commit)
974 old_desc = oid_to_hex(&old_branch_info->commit->object.oid);
975
976 reflog_msg = getenv("GIT_REFLOG_ACTION");
977 if (!reflog_msg)
978 strbuf_addf(&msg, "checkout: moving from %s to %s",
979 old_desc ? old_desc : "(invalid)", new_branch_info->name);
980 else
981 strbuf_insertstr(&msg, 0, reflog_msg);
982
983 if (!strcmp(new_branch_info->name, "HEAD") && !new_branch_info->path && !opts->force_detach) {
984 /* Nothing to do. */
985 } else if (opts->force_detach || !new_branch_info->path) { /* No longer on any branch. */
986 update_ref(msg.buf, "HEAD", &new_branch_info->commit->object.oid, NULL,
987 REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR);
988 if (!opts->quiet) {
989 if (old_branch_info->path &&
990 advice_enabled(ADVICE_DETACHED_HEAD) && !opts->force_detach)
991 detach_advice(new_branch_info->name);
992 describe_detached_head(_("HEAD is now at"), new_branch_info->commit);
993 }
994 } else if (new_branch_info->path) { /* Switch branches. */
995 if (create_symref("HEAD", new_branch_info->path, msg.buf) < 0)
996 die(_("unable to update HEAD"));
997 if (!opts->quiet) {
998 if (old_branch_info->path && !strcmp(new_branch_info->path, old_branch_info->path)) {
999 if (opts->new_branch_force)
1000 fprintf(stderr, _("Reset branch '%s'\n"),
1001 new_branch_info->name);
1002 else
1003 fprintf(stderr, _("Already on '%s'\n"),
1004 new_branch_info->name);
1005 } else if (opts->new_branch) {
1006 if (opts->branch_exists)
1007 fprintf(stderr, _("Switched to and reset branch '%s'\n"), new_branch_info->name);
1008 else
1009 fprintf(stderr, _("Switched to a new branch '%s'\n"), new_branch_info->name);
1010 } else {
1011 fprintf(stderr, _("Switched to branch '%s'\n"),
1012 new_branch_info->name);
1013 }
1014 }
1015 if (old_branch_info->path && old_branch_info->name) {
1016 if (!ref_exists(old_branch_info->path) && reflog_exists(old_branch_info->path))
1017 delete_reflog(old_branch_info->path);
1018 }
1019 }
1020 remove_branch_state(the_repository, !opts->quiet);
1021 strbuf_release(&msg);
1022 if (!opts->quiet &&
1023 (new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name, "HEAD"))))
1024 report_tracking(new_branch_info);
1025 }
1026
1027 static int add_pending_uninteresting_ref(const char *refname,
1028 const struct object_id *oid,
1029 int flags UNUSED, void *cb_data)
1030 {
1031 add_pending_oid(cb_data, refname, oid, UNINTERESTING);
1032 return 0;
1033 }
1034
1035 static void describe_one_orphan(struct strbuf *sb, struct commit *commit)
1036 {
1037 strbuf_addstr(sb, " ");
1038 strbuf_add_unique_abbrev(sb, &commit->object.oid, DEFAULT_ABBREV);
1039 strbuf_addch(sb, ' ');
1040 if (!repo_parse_commit(the_repository, commit))
1041 pp_commit_easy(CMIT_FMT_ONELINE, commit, sb);
1042 strbuf_addch(sb, '\n');
1043 }
1044
1045 #define ORPHAN_CUTOFF 4
1046 static void suggest_reattach(struct commit *commit, struct rev_info *revs)
1047 {
1048 struct commit *c, *last = NULL;
1049 struct strbuf sb = STRBUF_INIT;
1050 int lost = 0;
1051 while ((c = get_revision(revs)) != NULL) {
1052 if (lost < ORPHAN_CUTOFF)
1053 describe_one_orphan(&sb, c);
1054 last = c;
1055 lost++;
1056 }
1057 if (ORPHAN_CUTOFF < lost) {
1058 int more = lost - ORPHAN_CUTOFF;
1059 if (more == 1)
1060 describe_one_orphan(&sb, last);
1061 else
1062 strbuf_addf(&sb, _(" ... and %d more.\n"), more);
1063 }
1064
1065 fprintf(stderr,
1066 Q_(
1067 /* The singular version */
1068 "Warning: you are leaving %d commit behind, "
1069 "not connected to\n"
1070 "any of your branches:\n\n"
1071 "%s\n",
1072 /* The plural version */
1073 "Warning: you are leaving %d commits behind, "
1074 "not connected to\n"
1075 "any of your branches:\n\n"
1076 "%s\n",
1077 /* Give ngettext() the count */
1078 lost),
1079 lost,
1080 sb.buf);
1081 strbuf_release(&sb);
1082
1083 if (advice_enabled(ADVICE_DETACHED_HEAD))
1084 fprintf(stderr,
1085 Q_(
1086 /* The singular version */
1087 "If you want to keep it by creating a new branch, "
1088 "this may be a good time\nto do so with:\n\n"
1089 " git branch <new-branch-name> %s\n\n",
1090 /* The plural version */
1091 "If you want to keep them by creating a new branch, "
1092 "this may be a good time\nto do so with:\n\n"
1093 " git branch <new-branch-name> %s\n\n",
1094 /* Give ngettext() the count */
1095 lost),
1096 repo_find_unique_abbrev(the_repository, &commit->object.oid, DEFAULT_ABBREV));
1097 }
1098
1099 /*
1100 * We are about to leave commit that was at the tip of a detached
1101 * HEAD. If it is not reachable from any ref, this is the last chance
1102 * for the user to do so without resorting to reflog.
1103 */
1104 static void orphaned_commit_warning(struct commit *old_commit, struct commit *new_commit)
1105 {
1106 struct rev_info revs;
1107 struct object *object = &old_commit->object;
1108
1109 repo_init_revisions(the_repository, &revs, NULL);
1110 setup_revisions(0, NULL, &revs, NULL);
1111
1112 object->flags &= ~UNINTERESTING;
1113 add_pending_object(&revs, object, oid_to_hex(&object->oid));
1114
1115 for_each_ref(add_pending_uninteresting_ref, &revs);
1116 if (new_commit)
1117 add_pending_oid(&revs, "HEAD",
1118 &new_commit->object.oid,
1119 UNINTERESTING);
1120
1121 if (prepare_revision_walk(&revs))
1122 die(_("internal error in revision walk"));
1123 if (!(old_commit->object.flags & UNINTERESTING))
1124 suggest_reattach(old_commit, &revs);
1125 else
1126 describe_detached_head(_("Previous HEAD position was"), old_commit);
1127
1128 /* Clean up objects used, as they will be reused. */
1129 repo_clear_commit_marks(the_repository, ALL_REV_FLAGS);
1130 release_revisions(&revs);
1131 }
1132
1133 static int switch_branches(const struct checkout_opts *opts,
1134 struct branch_info *new_branch_info)
1135 {
1136 int ret = 0;
1137 struct branch_info old_branch_info = { 0 };
1138 struct object_id rev;
1139 int flag, writeout_error = 0;
1140 int do_merge = 1;
1141
1142 trace2_cmd_mode("branch");
1143
1144 memset(&old_branch_info, 0, sizeof(old_branch_info));
1145 old_branch_info.path = resolve_refdup("HEAD", 0, &rev, &flag);
1146 if (old_branch_info.path)
1147 old_branch_info.commit = lookup_commit_reference_gently(the_repository, &rev, 1);
1148 if (!(flag & REF_ISSYMREF))
1149 FREE_AND_NULL(old_branch_info.path);
1150
1151 if (old_branch_info.path) {
1152 const char *const prefix = "refs/heads/";
1153 const char *p;
1154 if (skip_prefix(old_branch_info.path, prefix, &p))
1155 old_branch_info.name = xstrdup(p);
1156 }
1157
1158 if (opts->new_orphan_branch && opts->orphan_from_empty_tree) {
1159 if (new_branch_info->name)
1160 BUG("'switch --orphan' should never accept a commit as starting point");
1161 new_branch_info->commit = NULL;
1162 new_branch_info->name = xstrdup("(empty)");
1163 do_merge = 1;
1164 }
1165
1166 if (!new_branch_info->name) {
1167 new_branch_info->name = xstrdup("HEAD");
1168 new_branch_info->commit = old_branch_info.commit;
1169 if (!new_branch_info->commit)
1170 die(_("You are on a branch yet to be born"));
1171 parse_commit_or_die(new_branch_info->commit);
1172
1173 if (opts->only_merge_on_switching_branches)
1174 do_merge = 0;
1175 }
1176
1177 if (do_merge) {
1178 ret = merge_working_tree(opts, &old_branch_info, new_branch_info, &writeout_error);
1179 if (ret) {
1180 branch_info_release(&old_branch_info);
1181 return ret;
1182 }
1183 }
1184
1185 if (!opts->quiet && !old_branch_info.path && old_branch_info.commit && new_branch_info->commit != old_branch_info.commit)
1186 orphaned_commit_warning(old_branch_info.commit, new_branch_info->commit);
1187
1188 update_refs_for_switch(opts, &old_branch_info, new_branch_info);
1189
1190 ret = post_checkout_hook(old_branch_info.commit, new_branch_info->commit, 1);
1191 branch_info_release(&old_branch_info);
1192
1193 return ret || writeout_error;
1194 }
1195
1196 static int git_checkout_config(const char *var, const char *value,
1197 const struct config_context *ctx, void *cb)
1198 {
1199 struct checkout_opts *opts = cb;
1200
1201 if (!strcmp(var, "diff.ignoresubmodules")) {
1202 if (!value)
1203 return config_error_nonbool(var);
1204 handle_ignore_submodules_arg(&opts->diff_options, value);
1205 return 0;
1206 }
1207 if (!strcmp(var, "checkout.guess")) {
1208 opts->dwim_new_local_branch = git_config_bool(var, value);
1209 return 0;
1210 }
1211
1212 if (starts_with(var, "submodule."))
1213 return git_default_submodule_config(var, value, NULL);
1214
1215 return git_xmerge_config(var, value, ctx, NULL);
1216 }
1217
1218 static void setup_new_branch_info_and_source_tree(
1219 struct branch_info *new_branch_info,
1220 struct checkout_opts *opts,
1221 struct object_id *rev,
1222 const char *arg)
1223 {
1224 struct tree **source_tree = &opts->source_tree;
1225 struct object_id branch_rev;
1226
1227 new_branch_info->name = xstrdup(arg);
1228 setup_branch_path(new_branch_info);
1229
1230 if (!check_refname_format(new_branch_info->path, 0) &&
1231 !read_ref(new_branch_info->path, &branch_rev))
1232 oidcpy(rev, &branch_rev);
1233 else
1234 /* not an existing branch */
1235 FREE_AND_NULL(new_branch_info->path);
1236
1237 new_branch_info->commit = lookup_commit_reference_gently(the_repository, rev, 1);
1238 if (!new_branch_info->commit) {
1239 /* not a commit */
1240 *source_tree = parse_tree_indirect(rev);
1241 } else {
1242 parse_commit_or_die(new_branch_info->commit);
1243 *source_tree = repo_get_commit_tree(the_repository,
1244 new_branch_info->commit);
1245 }
1246 }
1247
1248 static const char *parse_remote_branch(const char *arg,
1249 struct object_id *rev,
1250 int could_be_checkout_paths)
1251 {
1252 int num_matches = 0;
1253 const char *remote = unique_tracking_name(arg, rev, &num_matches);
1254
1255 if (remote && could_be_checkout_paths) {
1256 die(_("'%s' could be both a local file and a tracking branch.\n"
1257 "Please use -- (and optionally --no-guess) to disambiguate"),
1258 arg);
1259 }
1260
1261 if (!remote && num_matches > 1) {
1262 if (advice_enabled(ADVICE_CHECKOUT_AMBIGUOUS_REMOTE_BRANCH_NAME)) {
1263 advise(_("If you meant to check out a remote tracking branch on, e.g. 'origin',\n"
1264 "you can do so by fully qualifying the name with the --track option:\n"
1265 "\n"
1266 " git checkout --track origin/<name>\n"
1267 "\n"
1268 "If you'd like to always have checkouts of an ambiguous <name> prefer\n"
1269 "one remote, e.g. the 'origin' remote, consider setting\n"
1270 "checkout.defaultRemote=origin in your config."));
1271 }
1272
1273 die(_("'%s' matched multiple (%d) remote tracking branches"),
1274 arg, num_matches);
1275 }
1276
1277 return remote;
1278 }
1279
1280 static int parse_branchname_arg(int argc, const char **argv,
1281 int dwim_new_local_branch_ok,
1282 struct branch_info *new_branch_info,
1283 struct checkout_opts *opts,
1284 struct object_id *rev)
1285 {
1286 const char **new_branch = &opts->new_branch;
1287 int argcount = 0;
1288 const char *arg;
1289 int dash_dash_pos;
1290 int has_dash_dash = 0;
1291 int i;
1292
1293 /*
1294 * case 1: git checkout <ref> -- [<paths>]
1295 *
1296 * <ref> must be a valid tree, everything after the '--' must be
1297 * a path.
1298 *
1299 * case 2: git checkout -- [<paths>]
1300 *
1301 * everything after the '--' must be paths.
1302 *
1303 * case 3: git checkout <something> [--]
1304 *
1305 * (a) If <something> is a commit, that is to
1306 * switch to the branch or detach HEAD at it. As a special case,
1307 * if <something> is A...B (missing A or B means HEAD but you can
1308 * omit at most one side), and if there is a unique merge base
1309 * between A and B, A...B names that merge base.
1310 *
1311 * (b) If <something> is _not_ a commit, either "--" is present
1312 * or <something> is not a path, no -t or -b was given,
1313 * and there is a tracking branch whose name is <something>
1314 * in one and only one remote (or if the branch exists on the
1315 * remote named in checkout.defaultRemote), then this is a
1316 * short-hand to fork local <something> from that
1317 * remote-tracking branch.
1318 *
1319 * (c) Otherwise, if "--" is present, treat it like case (1).
1320 *
1321 * (d) Otherwise :
1322 * - if it's a reference, treat it like case (1)
1323 * - else if it's a path, treat it like case (2)
1324 * - else: fail.
1325 *
1326 * case 4: git checkout <something> <paths>
1327 *
1328 * The first argument must not be ambiguous.
1329 * - If it's *only* a reference, treat it like case (1).
1330 * - If it's only a path, treat it like case (2).
1331 * - else: fail.
1332 *
1333 */
1334 if (!argc)
1335 return 0;
1336
1337 if (!opts->accept_pathspec) {
1338 if (argc > 1)
1339 die(_("only one reference expected"));
1340 has_dash_dash = 1; /* helps disambiguate */
1341 }
1342
1343 arg = argv[0];
1344 dash_dash_pos = -1;
1345 for (i = 0; i < argc; i++) {
1346 if (opts->accept_pathspec && !strcmp(argv[i], "--")) {
1347 dash_dash_pos = i;
1348 break;
1349 }
1350 }
1351 if (dash_dash_pos == 0)
1352 return 1; /* case (2) */
1353 else if (dash_dash_pos == 1)
1354 has_dash_dash = 1; /* case (3) or (1) */
1355 else if (dash_dash_pos >= 2)
1356 die(_("only one reference expected, %d given."), dash_dash_pos);
1357 opts->count_checkout_paths = !opts->quiet && !has_dash_dash;
1358
1359 if (!strcmp(arg, "-"))
1360 arg = "@{-1}";
1361
1362 if (repo_get_oid_mb(the_repository, arg, rev)) {
1363 /*
1364 * Either case (3) or (4), with <something> not being
1365 * a commit, or an attempt to use case (1) with an
1366 * invalid ref.
1367 *
1368 * It's likely an error, but we need to find out if
1369 * we should auto-create the branch, case (3).(b).
1370 */
1371 int recover_with_dwim = dwim_new_local_branch_ok;
1372
1373 int could_be_checkout_paths = !has_dash_dash &&
1374 check_filename(opts->prefix, arg);
1375
1376 if (!has_dash_dash && !no_wildcard(arg))
1377 recover_with_dwim = 0;
1378
1379 /*
1380 * Accept "git checkout foo", "git checkout foo --"
1381 * and "git switch foo" as candidates for dwim.
1382 */
1383 if (!(argc == 1 && !has_dash_dash) &&
1384 !(argc == 2 && has_dash_dash) &&
1385 opts->accept_pathspec)
1386 recover_with_dwim = 0;
1387
1388 if (recover_with_dwim) {
1389 const char *remote = parse_remote_branch(arg, rev,
1390 could_be_checkout_paths);
1391 if (remote) {
1392 *new_branch = arg;
1393 arg = remote;
1394 /* DWIMmed to create local branch, case (3).(b) */
1395 } else {
1396 recover_with_dwim = 0;
1397 }
1398 }
1399
1400 if (!recover_with_dwim) {
1401 if (has_dash_dash)
1402 die(_("invalid reference: %s"), arg);
1403 return argcount;
1404 }
1405 }
1406
1407 /* we can't end up being in (2) anymore, eat the argument */
1408 argcount++;
1409 argv++;
1410 argc--;
1411
1412 setup_new_branch_info_and_source_tree(new_branch_info, opts, rev, arg);
1413
1414 if (!opts->source_tree) /* case (1): want a tree */
1415 die(_("reference is not a tree: %s"), arg);
1416
1417 if (!has_dash_dash) { /* case (3).(d) -> (1) */
1418 /*
1419 * Do not complain the most common case
1420 * git checkout branch
1421 * even if there happen to be a file called 'branch';
1422 * it would be extremely annoying.
1423 */
1424 if (argc)
1425 verify_non_filename(opts->prefix, arg);
1426 } else if (opts->accept_pathspec) {
1427 argcount++;
1428 argv++;
1429 argc--;
1430 }
1431
1432 return argcount;
1433 }
1434
1435 static int switch_unborn_to_new_branch(const struct checkout_opts *opts)
1436 {
1437 int status;
1438 struct strbuf branch_ref = STRBUF_INIT;
1439
1440 trace2_cmd_mode("unborn");
1441
1442 if (!opts->new_branch)
1443 die(_("You are on a branch yet to be born"));
1444 strbuf_addf(&branch_ref, "refs/heads/%s", opts->new_branch);
1445 status = create_symref("HEAD", branch_ref.buf, "checkout -b");
1446 strbuf_release(&branch_ref);
1447 if (!opts->quiet)
1448 fprintf(stderr, _("Switched to a new branch '%s'\n"),
1449 opts->new_branch);
1450 return status;
1451 }
1452
1453 static void die_expecting_a_branch(const struct branch_info *branch_info)
1454 {
1455 struct object_id oid;
1456 char *to_free;
1457 int code;
1458
1459 if (repo_dwim_ref(the_repository, branch_info->name,
1460 strlen(branch_info->name), &oid, &to_free, 0) == 1) {
1461 const char *ref = to_free;
1462
1463 if (skip_prefix(ref, "refs/tags/", &ref))
1464 code = die_message(_("a branch is expected, got tag '%s'"), ref);
1465 else if (skip_prefix(ref, "refs/remotes/", &ref))
1466 code = die_message(_("a branch is expected, got remote branch '%s'"), ref);
1467 else
1468 code = die_message(_("a branch is expected, got '%s'"), ref);
1469 }
1470 else if (branch_info->commit)
1471 code = die_message(_("a branch is expected, got commit '%s'"), branch_info->name);
1472 else
1473 /*
1474 * This case should never happen because we already die() on
1475 * non-commit, but just in case.
1476 */
1477 code = die_message(_("a branch is expected, got '%s'"), branch_info->name);
1478
1479 if (advice_enabled(ADVICE_SUGGEST_DETACHING_HEAD))
1480 advise(_("If you want to detach HEAD at the commit, try again with the --detach option."));
1481
1482 exit(code);
1483 }
1484
1485 static void die_if_some_operation_in_progress(void)
1486 {
1487 struct wt_status_state state;
1488
1489 memset(&state, 0, sizeof(state));
1490 wt_status_get_state(the_repository, &state, 0);
1491
1492 if (state.merge_in_progress)
1493 die(_("cannot switch branch while merging\n"
1494 "Consider \"git merge --quit\" "
1495 "or \"git worktree add\"."));
1496 if (state.am_in_progress)
1497 die(_("cannot switch branch in the middle of an am session\n"
1498 "Consider \"git am --quit\" "
1499 "or \"git worktree add\"."));
1500 if (state.rebase_interactive_in_progress || state.rebase_in_progress)
1501 die(_("cannot switch branch while rebasing\n"
1502 "Consider \"git rebase --quit\" "
1503 "or \"git worktree add\"."));
1504 if (state.cherry_pick_in_progress)
1505 die(_("cannot switch branch while cherry-picking\n"
1506 "Consider \"git cherry-pick --quit\" "
1507 "or \"git worktree add\"."));
1508 if (state.revert_in_progress)
1509 die(_("cannot switch branch while reverting\n"
1510 "Consider \"git revert --quit\" "
1511 "or \"git worktree add\"."));
1512 if (state.bisect_in_progress)
1513 warning(_("you are switching branch while bisecting"));
1514
1515 wt_status_state_free_buffers(&state);
1516 }
1517
1518 static int checkout_branch(struct checkout_opts *opts,
1519 struct branch_info *new_branch_info)
1520 {
1521 if (opts->pathspec.nr)
1522 die(_("paths cannot be used with switching branches"));
1523
1524 if (opts->patch_mode)
1525 die(_("'%s' cannot be used with switching branches"),
1526 "--patch");
1527
1528 if (opts->overlay_mode != -1)
1529 die(_("'%s' cannot be used with switching branches"),
1530 "--[no]-overlay");
1531
1532 if (opts->writeout_stage)
1533 die(_("'%s' cannot be used with switching branches"),
1534 "--ours/--theirs");
1535
1536 if (opts->force && opts->merge)
1537 die(_("'%s' cannot be used with '%s'"), "-f", "-m");
1538
1539 if (opts->discard_changes && opts->merge)
1540 die(_("'%s' cannot be used with '%s'"), "--discard-changes", "--merge");
1541
1542 if (opts->force_detach && opts->new_branch)
1543 die(_("'%s' cannot be used with '%s'"),
1544 "--detach", "-b/-B/--orphan");
1545
1546 if (opts->new_orphan_branch) {
1547 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1548 die(_("'%s' cannot be used with '%s'"), "--orphan", "-t");
1549 if (opts->orphan_from_empty_tree && new_branch_info->name)
1550 die(_("'%s' cannot take <start-point>"), "--orphan");
1551 } else if (opts->force_detach) {
1552 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1553 die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
1554 } else if (opts->track == BRANCH_TRACK_UNSPECIFIED)
1555 opts->track = git_branch_track;
1556
1557 if (new_branch_info->name && !new_branch_info->commit)
1558 die(_("Cannot switch branch to a non-commit '%s'"),
1559 new_branch_info->name);
1560
1561 if (!opts->switch_branch_doing_nothing_is_ok &&
1562 !new_branch_info->name &&
1563 !opts->new_branch &&
1564 !opts->force_detach)
1565 die(_("missing branch or commit argument"));
1566
1567 if (!opts->implicit_detach &&
1568 !opts->force_detach &&
1569 !opts->new_branch &&
1570 !opts->new_branch_force &&
1571 new_branch_info->name &&
1572 !new_branch_info->path)
1573 die_expecting_a_branch(new_branch_info);
1574
1575 if (!opts->can_switch_when_in_progress)
1576 die_if_some_operation_in_progress();
1577
1578 if (new_branch_info->path && !opts->force_detach && !opts->new_branch &&
1579 !opts->ignore_other_worktrees) {
1580 int flag;
1581 char *head_ref = resolve_refdup("HEAD", 0, NULL, &flag);
1582 if (head_ref &&
1583 (!(flag & REF_ISSYMREF) || strcmp(head_ref, new_branch_info->path)))
1584 die_if_checked_out(new_branch_info->path, 1);
1585 free(head_ref);
1586 }
1587
1588 if (!new_branch_info->commit && opts->new_branch) {
1589 struct object_id rev;
1590 int flag;
1591
1592 if (!read_ref_full("HEAD", 0, &rev, &flag) &&
1593 (flag & REF_ISSYMREF) && is_null_oid(&rev))
1594 return switch_unborn_to_new_branch(opts);
1595 }
1596 return switch_branches(opts, new_branch_info);
1597 }
1598
1599 static struct option *add_common_options(struct checkout_opts *opts,
1600 struct option *prevopts)
1601 {
1602 struct option options[] = {
1603 OPT__QUIET(&opts->quiet, N_("suppress progress reporting")),
1604 OPT_CALLBACK_F(0, "recurse-submodules", NULL,
1605 "checkout", "control recursive updating of submodules",
1606 PARSE_OPT_OPTARG, option_parse_recurse_submodules_worktree_updater),
1607 OPT_BOOL(0, "progress", &opts->show_progress, N_("force progress reporting")),
1608 OPT_BOOL('m', "merge", &opts->merge, N_("perform a 3-way merge with the new branch")),
1609 OPT_STRING(0, "conflict", &opts->conflict_style, N_("style"),
1610 N_("conflict style (merge, diff3, or zdiff3)")),
1611 OPT_END()
1612 };
1613 struct option *newopts = parse_options_concat(prevopts, options);
1614 free(prevopts);
1615 return newopts;
1616 }
1617
1618 static struct option *add_common_switch_branch_options(
1619 struct checkout_opts *opts, struct option *prevopts)
1620 {
1621 struct option options[] = {
1622 OPT_BOOL('d', "detach", &opts->force_detach, N_("detach HEAD at named commit")),
1623 OPT_CALLBACK_F('t', "track", &opts->track, "(direct|inherit)",
1624 N_("set branch tracking configuration"),
1625 PARSE_OPT_OPTARG,
1626 parse_opt_tracking_mode),
1627 OPT__FORCE(&opts->force, N_("force checkout (throw away local modifications)"),
1628 PARSE_OPT_NOCOMPLETE),
1629 OPT_STRING(0, "orphan", &opts->new_orphan_branch, N_("new-branch"), N_("new unborn branch")),
1630 OPT_BOOL_F(0, "overwrite-ignore", &opts->overwrite_ignore,
1631 N_("update ignored files (default)"),
1632 PARSE_OPT_NOCOMPLETE),
1633 OPT_BOOL(0, "ignore-other-worktrees", &opts->ignore_other_worktrees,
1634 N_("do not check if another worktree is holding the given ref")),
1635 OPT_END()
1636 };
1637 struct option *newopts = parse_options_concat(prevopts, options);
1638 free(prevopts);
1639 return newopts;
1640 }
1641
1642 static struct option *add_checkout_path_options(struct checkout_opts *opts,
1643 struct option *prevopts)
1644 {
1645 struct option options[] = {
1646 OPT_SET_INT_F('2', "ours", &opts->writeout_stage,
1647 N_("checkout our version for unmerged files"),
1648 2, PARSE_OPT_NONEG),
1649 OPT_SET_INT_F('3', "theirs", &opts->writeout_stage,
1650 N_("checkout their version for unmerged files"),
1651 3, PARSE_OPT_NONEG),
1652 OPT_BOOL('p', "patch", &opts->patch_mode, N_("select hunks interactively")),
1653 OPT_BOOL(0, "ignore-skip-worktree-bits", &opts->ignore_skipworktree,
1654 N_("do not limit pathspecs to sparse entries only")),
1655 OPT_PATHSPEC_FROM_FILE(&opts->pathspec_from_file),
1656 OPT_PATHSPEC_FILE_NUL(&opts->pathspec_file_nul),
1657 OPT_END()
1658 };
1659 struct option *newopts = parse_options_concat(prevopts, options);
1660 free(prevopts);
1661 return newopts;
1662 }
1663
1664 /* create-branch option (either b or c) */
1665 static char cb_option = 'b';
1666
1667 static int checkout_main(int argc, const char **argv, const char *prefix,
1668 struct checkout_opts *opts, struct option *options,
1669 const char * const usagestr[],
1670 struct branch_info *new_branch_info)
1671 {
1672 int parseopt_flags = 0;
1673
1674 opts->overwrite_ignore = 1;
1675 opts->prefix = prefix;
1676 opts->show_progress = -1;
1677
1678 git_config(git_checkout_config, opts);
1679 if (the_repository->gitdir) {
1680 prepare_repo_settings(the_repository);
1681 the_repository->settings.command_requires_full_index = 0;
1682 }
1683
1684 opts->track = BRANCH_TRACK_UNSPECIFIED;
1685
1686 if (!opts->accept_pathspec && !opts->accept_ref)
1687 BUG("make up your mind, you need to take _something_");
1688 if (opts->accept_pathspec && opts->accept_ref)
1689 parseopt_flags = PARSE_OPT_KEEP_DASHDASH;
1690
1691 argc = parse_options(argc, argv, prefix, options,
1692 usagestr, parseopt_flags);
1693
1694 if (opts->show_progress < 0) {
1695 if (opts->quiet)
1696 opts->show_progress = 0;
1697 else
1698 opts->show_progress = isatty(2);
1699 }
1700
1701 if (opts->conflict_style) {
1702 struct key_value_info kvi = KVI_INIT;
1703 struct config_context ctx = {
1704 .kvi = &kvi,
1705 };
1706 opts->merge = 1; /* implied */
1707 git_xmerge_config("merge.conflictstyle", opts->conflict_style,
1708 &ctx, NULL);
1709 }
1710 if (opts->force) {
1711 opts->discard_changes = 1;
1712 opts->ignore_unmerged_opt = "--force";
1713 opts->ignore_unmerged = 1;
1714 }
1715
1716 if ((!!opts->new_branch + !!opts->new_branch_force + !!opts->new_orphan_branch) > 1)
1717 die(_("options '-%c', '-%c', and '%s' cannot be used together"),
1718 cb_option, toupper(cb_option), "--orphan");
1719
1720 if (opts->overlay_mode == 1 && opts->patch_mode)
1721 die(_("options '%s' and '%s' cannot be used together"), "-p", "--overlay");
1722
1723 if (opts->checkout_index >= 0 || opts->checkout_worktree >= 0) {
1724 if (opts->checkout_index < 0)
1725 opts->checkout_index = 0;
1726 if (opts->checkout_worktree < 0)
1727 opts->checkout_worktree = 0;
1728 } else {
1729 if (opts->checkout_index < 0)
1730 opts->checkout_index = -opts->checkout_index - 1;
1731 if (opts->checkout_worktree < 0)
1732 opts->checkout_worktree = -opts->checkout_worktree - 1;
1733 }
1734 if (opts->checkout_index < 0 || opts->checkout_worktree < 0)
1735 BUG("these flags should be non-negative by now");
1736 /*
1737 * convenient shortcut: "git restore --staged [--worktree]" equals
1738 * "git restore --staged [--worktree] --source HEAD"
1739 */
1740 if (!opts->from_treeish && opts->checkout_index)
1741 opts->from_treeish = "HEAD";
1742
1743 /*
1744 * From here on, new_branch will contain the branch to be checked out,
1745 * and new_branch_force and new_orphan_branch will tell us which one of
1746 * -b/-B/-c/-C/--orphan is being used.
1747 */
1748 if (opts->new_branch_force)
1749 opts->new_branch = opts->new_branch_force;
1750
1751 if (opts->new_orphan_branch)
1752 opts->new_branch = opts->new_orphan_branch;
1753
1754 /* --track without -c/-C/-b/-B/--orphan should DWIM */
1755 if (opts->track != BRANCH_TRACK_UNSPECIFIED && !opts->new_branch) {
1756 const char *argv0 = argv[0];
1757 if (!argc || !strcmp(argv0, "--"))
1758 die(_("--track needs a branch name"));
1759 skip_prefix(argv0, "refs/", &argv0);
1760 skip_prefix(argv0, "remotes/", &argv0);
1761 argv0 = strchr(argv0, '/');
1762 if (!argv0 || !argv0[1])
1763 die(_("missing branch name; try -%c"), cb_option);
1764 opts->new_branch = argv0 + 1;
1765 }
1766
1767 /*
1768 * Extract branch name from command line arguments, so
1769 * all that is left is pathspecs.
1770 *
1771 * Handle
1772 *
1773 * 1) git checkout <tree> -- [<paths>]
1774 * 2) git checkout -- [<paths>]
1775 * 3) git checkout <something> [<paths>]
1776 *
1777 * including "last branch" syntax and DWIM-ery for names of
1778 * remote branches, erroring out for invalid or ambiguous cases.
1779 */
1780 if (argc && opts->accept_ref) {
1781 struct object_id rev;
1782 int dwim_ok =
1783 !opts->patch_mode &&
1784 opts->dwim_new_local_branch &&
1785 opts->track == BRANCH_TRACK_UNSPECIFIED &&
1786 !opts->new_branch;
1787 int n = parse_branchname_arg(argc, argv, dwim_ok,
1788 new_branch_info, opts, &rev);
1789 argv += n;
1790 argc -= n;
1791 } else if (!opts->accept_ref && opts->from_treeish) {
1792 struct object_id rev;
1793
1794 if (repo_get_oid_mb(the_repository, opts->from_treeish, &rev))
1795 die(_("could not resolve %s"), opts->from_treeish);
1796
1797 setup_new_branch_info_and_source_tree(new_branch_info,
1798 opts, &rev,
1799 opts->from_treeish);
1800
1801 if (!opts->source_tree)
1802 die(_("reference is not a tree: %s"), opts->from_treeish);
1803 }
1804
1805 if (argc) {
1806 parse_pathspec(&opts->pathspec, 0,
1807 opts->patch_mode ? PATHSPEC_PREFIX_ORIGIN : 0,
1808 prefix, argv);
1809
1810 if (!opts->pathspec.nr)
1811 die(_("invalid path specification"));
1812
1813 /*
1814 * Try to give more helpful suggestion.
1815 * new_branch && argc > 1 will be caught later.
1816 */
1817 if (opts->new_branch && argc == 1 && !new_branch_info->commit)
1818 die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),
1819 argv[0], opts->new_branch);
1820
1821 if (opts->force_detach)
1822 die(_("git checkout: --detach does not take a path argument '%s'"),
1823 argv[0]);
1824 }
1825
1826 if (opts->pathspec_from_file) {
1827 if (opts->pathspec.nr)
1828 die(_("'%s' and pathspec arguments cannot be used together"), "--pathspec-from-file");
1829
1830 if (opts->force_detach)
1831 die(_("options '%s' and '%s' cannot be used together"), "--pathspec-from-file", "--detach");
1832
1833 if (opts->patch_mode)
1834 die(_("options '%s' and '%s' cannot be used together"), "--pathspec-from-file", "--patch");
1835
1836 parse_pathspec_file(&opts->pathspec, 0,
1837 0,
1838 prefix, opts->pathspec_from_file, opts->pathspec_file_nul);
1839 } else if (opts->pathspec_file_nul) {
1840 die(_("the option '%s' requires '%s'"), "--pathspec-file-nul", "--pathspec-from-file");
1841 }
1842
1843 opts->pathspec.recursive = 1;
1844
1845 if (opts->pathspec.nr) {
1846 if (1 < !!opts->writeout_stage + !!opts->force + !!opts->merge)
1847 die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
1848 "checking out of the index."));
1849 } else {
1850 if (opts->accept_pathspec && !opts->empty_pathspec_ok &&
1851 !opts->patch_mode) /* patch mode is special */
1852 die(_("you must specify path(s) to restore"));
1853 }
1854
1855 if (opts->new_branch) {
1856 struct strbuf buf = STRBUF_INIT;
1857
1858 if (opts->new_branch_force)
1859 opts->branch_exists = validate_branchname(opts->new_branch, &buf);
1860 else
1861 opts->branch_exists =
1862 validate_new_branchname(opts->new_branch, &buf, 0);
1863 strbuf_release(&buf);
1864 }
1865
1866 if (opts->patch_mode || opts->pathspec.nr)
1867 return checkout_paths(opts, new_branch_info);
1868 else
1869 return checkout_branch(opts, new_branch_info);
1870 }
1871
1872 int cmd_checkout(int argc, const char **argv, const char *prefix)
1873 {
1874 struct checkout_opts opts;
1875 struct option *options;
1876 struct option checkout_options[] = {
1877 OPT_STRING('b', NULL, &opts.new_branch, N_("branch"),
1878 N_("create and checkout a new branch")),
1879 OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"),
1880 N_("create/reset and checkout a branch")),
1881 OPT_BOOL('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")),
1882 OPT_BOOL(0, "guess", &opts.dwim_new_local_branch,
1883 N_("second guess 'git checkout <no-such-branch>' (default)")),
1884 OPT_BOOL(0, "overlay", &opts.overlay_mode, N_("use overlay mode (default)")),
1885 OPT_END()
1886 };
1887 int ret;
1888 struct branch_info new_branch_info = { 0 };
1889
1890 memset(&opts, 0, sizeof(opts));
1891 opts.dwim_new_local_branch = 1;
1892 opts.switch_branch_doing_nothing_is_ok = 1;
1893 opts.only_merge_on_switching_branches = 0;
1894 opts.accept_ref = 1;
1895 opts.accept_pathspec = 1;
1896 opts.implicit_detach = 1;
1897 opts.can_switch_when_in_progress = 1;
1898 opts.orphan_from_empty_tree = 0;
1899 opts.empty_pathspec_ok = 1;
1900 opts.overlay_mode = -1;
1901 opts.checkout_index = -2; /* default on */
1902 opts.checkout_worktree = -2; /* default on */
1903
1904 if (argc == 3 && !strcmp(argv[1], "-b")) {
1905 /*
1906 * User ran 'git checkout -b <branch>' and expects
1907 * the same behavior as 'git switch -c <branch>'.
1908 */
1909 opts.switch_branch_doing_nothing_is_ok = 0;
1910 opts.only_merge_on_switching_branches = 1;
1911 }
1912
1913 options = parse_options_dup(checkout_options);
1914 options = add_common_options(&opts, options);
1915 options = add_common_switch_branch_options(&opts, options);
1916 options = add_checkout_path_options(&opts, options);
1917
1918 ret = checkout_main(argc, argv, prefix, &opts,
1919 options, checkout_usage, &new_branch_info);
1920 branch_info_release(&new_branch_info);
1921 clear_pathspec(&opts.pathspec);
1922 free(opts.pathspec_from_file);
1923 FREE_AND_NULL(options);
1924 return ret;
1925 }
1926
1927 int cmd_switch(int argc, const char **argv, const char *prefix)
1928 {
1929 struct checkout_opts opts;
1930 struct option *options = NULL;
1931 struct option switch_options[] = {
1932 OPT_STRING('c', "create", &opts.new_branch, N_("branch"),
1933 N_("create and switch to a new branch")),
1934 OPT_STRING('C', "force-create", &opts.new_branch_force, N_("branch"),
1935 N_("create/reset and switch to a branch")),
1936 OPT_BOOL(0, "guess", &opts.dwim_new_local_branch,
1937 N_("second guess 'git switch <no-such-branch>'")),
1938 OPT_BOOL(0, "discard-changes", &opts.discard_changes,
1939 N_("throw away local modifications")),
1940 OPT_END()
1941 };
1942 int ret;
1943 struct branch_info new_branch_info = { 0 };
1944
1945 memset(&opts, 0, sizeof(opts));
1946 opts.dwim_new_local_branch = 1;
1947 opts.accept_ref = 1;
1948 opts.accept_pathspec = 0;
1949 opts.switch_branch_doing_nothing_is_ok = 0;
1950 opts.only_merge_on_switching_branches = 1;
1951 opts.implicit_detach = 0;
1952 opts.can_switch_when_in_progress = 0;
1953 opts.orphan_from_empty_tree = 1;
1954 opts.overlay_mode = -1;
1955
1956 options = parse_options_dup(switch_options);
1957 options = add_common_options(&opts, options);
1958 options = add_common_switch_branch_options(&opts, options);
1959
1960 cb_option = 'c';
1961
1962 ret = checkout_main(argc, argv, prefix, &opts,
1963 options, switch_branch_usage, &new_branch_info);
1964 branch_info_release(&new_branch_info);
1965 FREE_AND_NULL(options);
1966 return ret;
1967 }
1968
1969 int cmd_restore(int argc, const char **argv, const char *prefix)
1970 {
1971 struct checkout_opts opts;
1972 struct option *options;
1973 struct option restore_options[] = {
1974 OPT_STRING('s', "source", &opts.from_treeish, "<tree-ish>",
1975 N_("which tree-ish to checkout from")),
1976 OPT_BOOL('S', "staged", &opts.checkout_index,
1977 N_("restore the index")),
1978 OPT_BOOL('W', "worktree", &opts.checkout_worktree,
1979 N_("restore the working tree (default)")),
1980 OPT_BOOL(0, "ignore-unmerged", &opts.ignore_unmerged,
1981 N_("ignore unmerged entries")),
1982 OPT_BOOL(0, "overlay", &opts.overlay_mode, N_("use overlay mode")),
1983 OPT_END()
1984 };
1985 int ret;
1986 struct branch_info new_branch_info = { 0 };
1987
1988 memset(&opts, 0, sizeof(opts));
1989 opts.accept_ref = 0;
1990 opts.accept_pathspec = 1;
1991 opts.empty_pathspec_ok = 0;
1992 opts.overlay_mode = 0;
1993 opts.checkout_index = -1; /* default off */
1994 opts.checkout_worktree = -2; /* default on */
1995 opts.ignore_unmerged_opt = "--ignore-unmerged";
1996
1997 options = parse_options_dup(restore_options);
1998 options = add_common_options(&opts, options);
1999 options = add_checkout_path_options(&opts, options);
2000
2001 ret = checkout_main(argc, argv, prefix, &opts,
2002 options, restore_usage, &new_branch_info);
2003 branch_info_release(&new_branch_info);
2004 FREE_AND_NULL(options);
2005 return ret;
2006 }