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