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