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