]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/checkout.c
Merge branch 'lt/date-human'
[thirdparty/git.git] / builtin / checkout.c
CommitLineData
f8adbec9 1#define USE_THE_INDEX_COMPATIBILITY_MACROS
782c2d65 2#include "builtin.h"
b2141fc1 3#include "config.h"
7c85a87c 4#include "checkout.h"
697cc8ef 5#include "lockfile.h"
782c2d65
DB
6#include "parse-options.h"
7#include "refs.h"
cbd53a21 8#include "object-store.h"
782c2d65
DB
9#include "commit.h"
10#include "tree.h"
11#include "tree-walk.h"
b9d37a54 12#include "cache-tree.h"
782c2d65
DB
13#include "unpack-trees.h"
14#include "dir.h"
15#include "run-command.h"
16#include "merge-recursive.h"
17#include "branch.h"
18#include "diff.h"
19#include "revision.h"
79a1e6b4 20#include "remote.h"
0cf8581e
JH
21#include "blob.h"
22#include "xdiff-interface.h"
23#include "ll-merge.h"
cfc5789a 24#include "resolve-undo.h"
851e18c3 25#include "submodule-config.h"
175f6e59 26#include "submodule.h"
ad8d5104 27#include "advice.h"
782c2d65 28
fa655d84
BP
29static int checkout_optimize_new_branch;
30
782c2d65 31static const char * const checkout_usage[] = {
9c9b4f2f
AH
32 N_("git checkout [<options>] <branch>"),
33 N_("git checkout [<options>] [<branch>] -- <file>..."),
782c2d65
DB
34 NULL,
35};
36
db941099 37struct checkout_opts {
e51e3057 38 int patch_mode;
db941099
JH
39 int quiet;
40 int merge;
41 int force;
32669671 42 int force_detach;
38901a48 43 int writeout_stage;
c1d7036b 44 int overwrite_ignore;
08d595dc 45 int ignore_skipworktree;
1d0fa898 46 int ignore_other_worktrees;
870ebdb9 47 int show_progress;
0f086e6d 48 int count_checkout_paths;
fa655d84
BP
49 /*
50 * If new checkout options are added, skip_merge_working_tree
51 * should be updated accordingly.
52 */
db941099
JH
53
54 const char *new_branch;
02ac9837 55 const char *new_branch_force;
9db5ebf4 56 const char *new_orphan_branch;
db941099
JH
57 int new_branch_log;
58 enum branch_track track;
175f6e59 59 struct diff_options diff_options;
e51e3057
NTND
60
61 int branch_exists;
62 const char *prefix;
817b345a 63 struct pathspec pathspec;
e51e3057 64 struct tree *source_tree;
db941099
JH
65};
66
c8a3ea1f 67static int post_checkout_hook(struct commit *old_commit, struct commit *new_commit,
782c2d65
DB
68 int changed)
69{
15048f8a 70 return run_hook_le(NULL, "post-checkout",
c8a3ea1f
BW
71 oid_to_hex(old_commit ? &old_commit->object.oid : &null_oid),
72 oid_to_hex(new_commit ? &new_commit->object.oid : &null_oid),
15048f8a 73 changed ? "1" : "0", NULL);
c8a3ea1f 74 /* "new_commit" can be NULL when checking out from the index before
2292ce47 75 a commit exists. */
ae98a008 76
782c2d65
DB
77}
78
df46d77e 79static int update_some(const struct object_id *oid, struct strbuf *base,
671f0707 80 const char *pathname, unsigned mode, int stage, void *context)
782c2d65
DB
81{
82 int len;
83 struct cache_entry *ce;
c5326bd6 84 int pos;
782c2d65 85
782c2d65
DB
86 if (S_ISDIR(mode))
87 return READ_TREE_RECURSIVE;
88
6a0b0b6d 89 len = base->len + strlen(pathname);
a849735b 90 ce = make_empty_cache_entry(&the_index, len);
df46d77e 91 oidcpy(&ce->oid, oid);
6a0b0b6d
NTND
92 memcpy(ce->name, base->buf, base->len);
93 memcpy(ce->name + base->len, pathname, len - base->len);
b60e188c
TG
94 ce->ce_flags = create_ce_flags(0) | CE_UPDATE;
95 ce->ce_namelen = len;
782c2d65 96 ce->ce_mode = create_ce_mode(mode);
c5326bd6
JK
97
98 /*
99 * If the entry is the same as the current index, we can leave the old
100 * entry in place. Whether it is UPTODATE or not, checkout_entry will
101 * do the right thing.
102 */
103 pos = cache_name_pos(ce->name, ce->ce_namelen);
104 if (pos >= 0) {
105 struct cache_entry *old = active_cache[pos];
106 if (ce->ce_mode == old->ce_mode &&
4a7e27e9 107 oideq(&ce->oid, &old->oid)) {
c5326bd6 108 old->ce_flags |= CE_UPDATE;
a849735b 109 discard_cache_entry(ce);
c5326bd6
JK
110 return 0;
111 }
112 }
113
782c2d65
DB
114 add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
115 return 0;
116}
117
18e4f405 118static int read_tree_some(struct tree *tree, const struct pathspec *pathspec)
782c2d65 119{
e092073d
NTND
120 read_tree_recursive(the_repository, tree, "", 0, 0,
121 pathspec, update_some, NULL);
782c2d65 122
782c2d65
DB
123 /* update the index with the given tree's info
124 * for all args, expanding wildcards, and exit
125 * with any non-zero return code.
126 */
127 return 0;
128}
129
9c5e6c80 130static int skip_same_name(const struct cache_entry *ce, int pos)
8fdcf312
JH
131{
132 while (++pos < active_nr &&
133 !strcmp(active_cache[pos]->name, ce->name))
134 ; /* skip */
135 return pos;
136}
137
9c5e6c80 138static int check_stage(int stage, const struct cache_entry *ce, int pos)
38901a48
JH
139{
140 while (pos < active_nr &&
141 !strcmp(active_cache[pos]->name, ce->name)) {
142 if (ce_stage(active_cache[pos]) == stage)
143 return 0;
144 pos++;
145 }
9f97ab08
ÆAB
146 if (stage == 2)
147 return error(_("path '%s' does not have our version"), ce->name);
148 else
149 return error(_("path '%s' does not have their version"), ce->name);
38901a48
JH
150}
151
9c5e6c80 152static int check_stages(unsigned stages, const struct cache_entry *ce, int pos)
0cf8581e 153{
fbbccd0a
JH
154 unsigned seen = 0;
155 const char *name = ce->name;
156
157 while (pos < active_nr) {
158 ce = active_cache[pos];
159 if (strcmp(name, ce->name))
160 break;
161 seen |= (1 << ce_stage(ce));
162 pos++;
163 }
164 if ((stages & seen) != stages)
165 return error(_("path '%s' does not have all necessary versions"),
166 name);
0cf8581e
JH
167 return 0;
168}
169
ce25e4c7 170static int checkout_stage(int stage, const struct cache_entry *ce, int pos,
0f086e6d 171 const struct checkout *state, int *nr_checkouts)
38901a48
JH
172{
173 while (pos < active_nr &&
174 !strcmp(active_cache[pos]->name, ce->name)) {
175 if (ce_stage(active_cache[pos]) == stage)
0f086e6d
NTND
176 return checkout_entry(active_cache[pos], state,
177 NULL, nr_checkouts);
38901a48
JH
178 pos++;
179 }
9f97ab08
ÆAB
180 if (stage == 2)
181 return error(_("path '%s' does not have our version"), ce->name);
182 else
183 return error(_("path '%s' does not have their version"), ce->name);
38901a48 184}
8fdcf312 185
0f086e6d 186static int checkout_merged(int pos, const struct checkout *state, int *nr_checkouts)
0cf8581e
JH
187{
188 struct cache_entry *ce = active_cache[pos];
189 const char *path = ce->name;
190 mmfile_t ancestor, ours, theirs;
191 int status;
60af7691 192 struct object_id oid;
0cf8581e 193 mmbuffer_t result_buf;
60af7691 194 struct object_id threeway[3];
335c6e40 195 unsigned mode = 0;
0cf8581e 196
fbbccd0a
JH
197 memset(threeway, 0, sizeof(threeway));
198 while (pos < active_nr) {
199 int stage;
200 stage = ce_stage(ce);
201 if (!stage || strcmp(path, ce->name))
202 break;
60af7691 203 oidcpy(&threeway[stage - 1], &ce->oid);
fbbccd0a
JH
204 if (stage == 2)
205 mode = create_ce_mode(ce->ce_mode);
206 pos++;
207 ce = active_cache[pos];
208 }
60af7691 209 if (is_null_oid(&threeway[1]) || is_null_oid(&threeway[2]))
fbbccd0a 210 return error(_("path '%s' does not have necessary versions"), path);
0cf8581e 211
d449347d 212 read_mmblob(&ancestor, &threeway[0]);
213 read_mmblob(&ours, &threeway[1]);
214 read_mmblob(&theirs, &threeway[2]);
0cf8581e 215
18b037a5
JN
216 /*
217 * NEEDSWORK: re-create conflicts from merges with
218 * merge.renormalize set, too
219 */
f0531a29 220 status = ll_merge(&result_buf, path, &ancestor, "base",
32eaa468
NTND
221 &ours, "ours", &theirs, "theirs",
222 state->istate, NULL);
0cf8581e
JH
223 free(ancestor.ptr);
224 free(ours.ptr);
225 free(theirs.ptr);
226 if (status < 0 || !result_buf.ptr) {
227 free(result_buf.ptr);
e8a8a4d7 228 return error(_("path '%s': cannot merge"), path);
0cf8581e
JH
229 }
230
231 /*
232 * NEEDSWORK:
233 * There is absolutely no reason to write this as a blob object
514e8039
JS
234 * and create a phony cache entry. This hack is primarily to get
235 * to the write_entry() machinery that massages the contents to
236 * work-tree format and writes out which only allows it for a
237 * cache entry. The code in write_entry() needs to be refactored
238 * to allow us to feed a <buffer, size, mode> instead of a cache
239 * entry. Such a refactoring would help merge_recursive as well
240 * (it also writes the merge result to the object database even
241 * when it may contain conflicts).
0cf8581e 242 */
a09c985e 243 if (write_object_file(result_buf.ptr, result_buf.size, blob_type, &oid))
e8a8a4d7 244 die(_("Unable to add merge result for '%s'"), path);
443a12f3 245 free(result_buf.ptr);
a849735b 246 ce = make_transient_cache_entry(mode, &oid, path, 2);
048f2762 247 if (!ce)
e8a8a4d7 248 die(_("make_cache_entry failed for path '%s'"), path);
0f086e6d 249 status = checkout_entry(ce, state, NULL, nr_checkouts);
a849735b 250 discard_cache_entry(ce);
0cf8581e
JH
251 return status;
252}
8fdcf312 253
b6312c27
NTND
254static int checkout_paths(const struct checkout_opts *opts,
255 const char *revision)
782c2d65
DB
256{
257 int pos;
68e3d629 258 struct checkout state = CHECKOUT_INIT;
782c2d65 259 static char *ps_matched;
60af7691 260 struct object_id rev;
782c2d65 261 struct commit *head;
d2b3691b 262 int errs = 0;
837e34eb 263 struct lock_file lock_file = LOCK_INIT;
0f086e6d 264 int nr_checkouts = 0;
b6312c27
NTND
265
266 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
267 die(_("'%s' cannot be used with updating paths"), "--track");
268
269 if (opts->new_branch_log)
270 die(_("'%s' cannot be used with updating paths"), "-l");
271
272 if (opts->force && opts->patch_mode)
273 die(_("'%s' cannot be used with updating paths"), "-f");
274
275 if (opts->force_detach)
276 die(_("'%s' cannot be used with updating paths"), "--detach");
277
278 if (opts->merge && opts->patch_mode)
279 die(_("'%s' cannot be used with %s"), "--merge", "--patch");
280
281 if (opts->force && opts->merge)
282 die(_("'%s' cannot be used with %s"), "-f", "-m");
283
284 if (opts->new_branch)
285 die(_("Cannot update paths and switch to branch '%s' at the same time."),
286 opts->new_branch);
287
288 if (opts->patch_mode)
289 return run_add_interactive(revision, "--patch=checkout",
480ca644 290 &opts->pathspec);
b6312c27 291
fb4a8464 292 repo_hold_locked_index(the_repository, &lock_file, LOCK_DIE_ON_ERROR);
5ab2a2da 293 if (read_cache_preload(&opts->pathspec) < 0)
e923a8ab 294 return error(_("index file corrupt"));
75336878 295
e51e3057 296 if (opts->source_tree)
18e4f405 297 read_tree_some(opts->source_tree, &opts->pathspec);
75336878 298
8b54c234 299 ps_matched = xcalloc(opts->pathspec.nr, 1);
782c2d65 300
e721c154
NTND
301 /*
302 * Make sure all pathspecs participated in locating the paths
303 * to be checked out.
304 */
782c2d65
DB
305 for (pos = 0; pos < active_nr; pos++) {
306 struct cache_entry *ce = active_cache[pos];
e721c154 307 ce->ce_flags &= ~CE_MATCHED;
08d595dc
NTND
308 if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
309 continue;
e51e3057 310 if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
e721c154
NTND
311 /*
312 * "git checkout tree-ish -- path", but this entry
313 * is in the original index; it will not be checked
314 * out to the working tree and it does not matter
315 * if pathspec matched this entry. We will not do
316 * anything to this entry at all.
317 */
0a1283bc 318 continue;
e721c154
NTND
319 /*
320 * Either this entry came from the tree-ish we are
321 * checking the paths out of, or we are checking out
322 * of the index.
323 *
324 * If it comes from the tree-ish, we already know it
325 * matches the pathspec and could just stamp
326 * CE_MATCHED to it from update_some(). But we still
327 * need ps_matched and read_tree_recursive (and
328 * eventually tree_entry_interesting) cannot fill
329 * ps_matched yet. Once it can, we can avoid calling
330 * match_pathspec() for _all_ entries when
331 * opts->source_tree != NULL.
332 */
6d2df284 333 if (ce_path_match(&the_index, ce, &opts->pathspec, ps_matched))
e721c154 334 ce->ce_flags |= CE_MATCHED;
782c2d65
DB
335 }
336
17ddc66e 337 if (report_path_error(ps_matched, &opts->pathspec, opts->prefix)) {
e721c154 338 free(ps_matched);
782c2d65 339 return 1;
e721c154
NTND
340 }
341 free(ps_matched);
782c2d65 342
4421a823
JH
343 /* "checkout -m path" to recreate conflicted state */
344 if (opts->merge)
e721c154 345 unmerge_marked_index(&the_index);
4421a823 346
8fdcf312
JH
347 /* Any unmerged paths? */
348 for (pos = 0; pos < active_nr; pos++) {
9c5e6c80 349 const struct cache_entry *ce = active_cache[pos];
e721c154 350 if (ce->ce_flags & CE_MATCHED) {
8fdcf312
JH
351 if (!ce_stage(ce))
352 continue;
db941099 353 if (opts->force) {
e8a8a4d7 354 warning(_("path '%s' is unmerged"), ce->name);
f9022075
SB
355 } else if (opts->writeout_stage) {
356 errs |= check_stage(opts->writeout_stage, ce, pos);
0cf8581e 357 } else if (opts->merge) {
fbbccd0a 358 errs |= check_stages((1<<2) | (1<<3), ce, pos);
db941099
JH
359 } else {
360 errs = 1;
e8a8a4d7 361 error(_("path '%s' is unmerged"), ce->name);
db941099 362 }
8fdcf312
JH
363 pos = skip_same_name(ce, pos) - 1;
364 }
365 }
366 if (errs)
367 return 1;
368
d2b3691b 369 /* Now we are committed to check them out */
782c2d65
DB
370 state.force = 1;
371 state.refresh_cache = 1;
d4a2024a 372 state.istate = &the_index;
2841e8f8
LS
373
374 enable_delayed_checkout(&state);
782c2d65
DB
375 for (pos = 0; pos < active_nr; pos++) {
376 struct cache_entry *ce = active_cache[pos];
e721c154 377 if (ce->ce_flags & CE_MATCHED) {
8fdcf312 378 if (!ce_stage(ce)) {
0f086e6d
NTND
379 errs |= checkout_entry(ce, &state,
380 NULL, &nr_checkouts);
8fdcf312
JH
381 continue;
382 }
f9022075 383 if (opts->writeout_stage)
0f086e6d
NTND
384 errs |= checkout_stage(opts->writeout_stage,
385 ce, pos,
386 &state, &nr_checkouts);
f9022075 387 else if (opts->merge)
0f086e6d
NTND
388 errs |= checkout_merged(pos, &state,
389 &nr_checkouts);
8fdcf312 390 pos = skip_same_name(ce, pos) - 1;
782c2d65
DB
391 }
392 }
0f086e6d
NTND
393 errs |= finish_delayed_checkout(&state, &nr_checkouts);
394
395 if (opts->count_checkout_paths) {
396 if (opts->source_tree)
397 fprintf_ln(stderr, Q_("Checked out %d path out of %s",
398 "Checked out %d paths out of %s",
399 nr_checkouts),
400 nr_checkouts,
401 find_unique_abbrev(&opts->source_tree->object.oid,
402 DEFAULT_ABBREV));
403 else
404 fprintf_ln(stderr, Q_("Checked out %d path out of the index",
405 "Checked out %d paths out of the index",
406 nr_checkouts),
407 nr_checkouts);
408 }
782c2d65 409
837e34eb 410 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
e8a8a4d7 411 die(_("unable to write new index file"));
75336878 412
34c290a6 413 read_ref_full("HEAD", 0, &rev, NULL);
21e1ee8f 414 head = lookup_commit_reference_gently(the_repository, &rev, 1);
782c2d65 415
d2b3691b
JH
416 errs |= post_checkout_hook(head, head, 0);
417 return errs;
782c2d65
DB
418}
419
a2b4994c
NTND
420static void show_local_changes(struct object *head,
421 const struct diff_options *opts)
782c2d65
DB
422{
423 struct rev_info rev;
424 /* I think we want full paths, even if we're in a subdirectory. */
2abf3503 425 repo_init_revisions(the_repository, &rev, NULL);
175f6e59 426 rev.diffopt.flags = opts->flags;
782c2d65 427 rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
28452655 428 diff_setup_done(&rev.diffopt);
782c2d65
DB
429 add_pending_object(&rev, head, NULL);
430 run_diff_index(&rev, 0);
431}
432
b3c0494a 433static void describe_detached_head(const char *msg, struct commit *commit)
782c2d65 434{
f285a2d7 435 struct strbuf sb = STRBUF_INIT;
ca69d4d5 436
3c621839
JK
437 if (!parse_commit(commit))
438 pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb);
ca69d4d5
AR
439 if (print_sha1_ellipsis()) {
440 fprintf(stderr, "%s %s... %s\n", msg,
aab9583f 441 find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf);
ca69d4d5
AR
442 } else {
443 fprintf(stderr, "%s %s %s\n", msg,
aab9583f 444 find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV), sb.buf);
ca69d4d5 445 }
782c2d65
DB
446 strbuf_release(&sb);
447}
448
a2b4994c
NTND
449static int reset_tree(struct tree *tree, const struct checkout_opts *o,
450 int worktree, int *writeout_error)
782c2d65
DB
451{
452 struct unpack_trees_options opts;
453 struct tree_desc tree_desc;
bc052d7f 454
782c2d65
DB
455 memset(&opts, 0, sizeof(opts));
456 opts.head_idx = -1;
6286a08d
JH
457 opts.update = worktree;
458 opts.skip_unmerged = !worktree;
782c2d65
DB
459 opts.reset = 1;
460 opts.merge = 1;
461 opts.fn = oneway_merge;
870ebdb9 462 opts.verbose_update = o->show_progress;
34110cd4
LT
463 opts.src_index = &the_index;
464 opts.dst_index = &the_index;
782c2d65
DB
465 parse_tree(tree);
466 init_tree_desc(&tree_desc, tree->buffer, tree->size);
291d823e
JH
467 switch (unpack_trees(1, &tree_desc, &opts)) {
468 case -2:
a2b4994c 469 *writeout_error = 1;
291d823e
JH
470 /*
471 * We return 0 nevertheless, as the index is all right
472 * and more importantly we have made best efforts to
473 * update paths in the work tree, and we cannot revert
474 * them.
475 */
1cf01a34 476 /* fallthrough */
291d823e
JH
477 case 0:
478 return 0;
479 default:
84a5750b 480 return 128;
291d823e 481 }
782c2d65
DB
482}
483
782c2d65
DB
484struct branch_info {
485 const char *name; /* The short name used */
486 const char *path; /* The full name of a real branch */
487 struct commit *commit; /* The named commit */
5883034c
NTND
488 /*
489 * if not null the branch is detached because it's already
490 * checked out in this checkout
491 */
492 char *checkout;
782c2d65
DB
493};
494
495static void setup_branch_path(struct branch_info *branch)
496{
f285a2d7 497 struct strbuf buf = STRBUF_INIT;
ae5a6c36 498
fd4692ff 499 strbuf_branchname(&buf, branch->name, INTERPRET_BRANCH_LOCAL);
a552de75 500 if (strcmp(buf.buf, branch->name))
ae5a6c36 501 branch->name = xstrdup(buf.buf);
a552de75 502 strbuf_splice(&buf, 0, 0, "refs/heads/", 11);
782c2d65
DB
503 branch->path = strbuf_detach(&buf, NULL);
504}
505
fa655d84
BP
506/*
507 * Skip merging the trees, updating the index and working directory if and
508 * only if we are creating a new branch via "git checkout -b <new_branch>."
509 */
510static int skip_merge_working_tree(const struct checkout_opts *opts,
511 const struct branch_info *old_branch_info,
512 const struct branch_info *new_branch_info)
513{
514 /*
515 * Do the merge if sparse checkout is on and the user has not opted in
516 * to the optimized behavior
517 */
518 if (core_apply_sparse_checkout && !checkout_optimize_new_branch)
519 return 0;
520
521 /*
522 * We must do the merge if we are actually moving to a new commit.
523 */
524 if (!old_branch_info->commit || !new_branch_info->commit ||
e43d2dcc
JK
525 !oideq(&old_branch_info->commit->object.oid,
526 &new_branch_info->commit->object.oid))
fa655d84
BP
527 return 0;
528
529 /*
530 * opts->patch_mode cannot be used with switching branches so is
531 * not tested here
532 */
533
534 /*
535 * opts->quiet only impacts output so doesn't require a merge
536 */
537
538 /*
539 * Honor the explicit request for a three-way merge or to throw away
540 * local changes
541 */
542 if (opts->merge || opts->force)
543 return 0;
544
545 /*
546 * --detach is documented as "updating the index and the files in the
547 * working tree" but this optimization skips those steps so fall through
548 * to the regular code path.
549 */
550 if (opts->force_detach)
551 return 0;
552
553 /*
554 * opts->writeout_stage cannot be used with switching branches so is
555 * not tested here
556 */
557
558 /*
559 * Honor the explicit ignore requests
560 */
561 if (!opts->overwrite_ignore || opts->ignore_skipworktree ||
562 opts->ignore_other_worktrees)
563 return 0;
564
565 /*
566 * opts->show_progress only impacts output so doesn't require a merge
567 */
568
569 /*
570 * If we aren't creating a new branch any changes or updates will
571 * happen in the existing branch. Since that could only be updating
572 * the index and working directory, we don't want to skip those steps
573 * or we've defeated any purpose in running the command.
574 */
575 if (!opts->new_branch)
576 return 0;
577
578 /*
579 * new_branch_force is defined to "create/reset and checkout a branch"
580 * so needs to go through the merge to do the reset
581 */
582 if (opts->new_branch_force)
583 return 0;
584
585 /*
586 * A new orphaned branch requrires the index and the working tree to be
587 * adjusted to <start_point>
588 */
589 if (opts->new_orphan_branch)
590 return 0;
591
592 /*
593 * Remaining variables are not checkout options but used to track state
594 */
595
8424bfd4
BP
596 /*
597 * Do the merge if this is the initial checkout. We cannot use
598 * is_cache_unborn() here because the index hasn't been loaded yet
599 * so cache_nr and timestamp.sec are always zero.
600 */
601 if (!file_exists(get_index_file()))
602 return 0;
603
fa655d84
BP
604 return 1;
605}
606
a2b4994c 607static int merge_working_tree(const struct checkout_opts *opts,
c8a3ea1f
BW
608 struct branch_info *old_branch_info,
609 struct branch_info *new_branch_info,
a2b4994c 610 int *writeout_error)
782c2d65
DB
611{
612 int ret;
837e34eb 613 struct lock_file lock_file = LOCK_INIT;
b96524f8 614
837e34eb 615 hold_locked_index(&lock_file, LOCK_DIE_ON_ERROR);
53996fe5 616 if (read_cache_preload(NULL) < 0)
e923a8ab 617 return error(_("index file corrupt"));
782c2d65 618
cfc5789a 619 resolve_undo_clear();
782c2d65 620 if (opts->force) {
2e27bd77
DS
621 ret = reset_tree(get_commit_tree(new_branch_info->commit),
622 opts, 1, writeout_error);
782c2d65
DB
623 if (ret)
624 return ret;
625 } else {
626 struct tree_desc trees[2];
627 struct tree *tree;
628 struct unpack_trees_options topts;
bc052d7f 629
782c2d65
DB
630 memset(&topts, 0, sizeof(topts));
631 topts.head_idx = -1;
34110cd4
LT
632 topts.src_index = &the_index;
633 topts.dst_index = &the_index;
782c2d65 634
e294030f 635 setup_unpack_trees_porcelain(&topts, "checkout");
8ccba008 636
782c2d65
DB
637 refresh_cache(REFRESH_QUIET);
638
639 if (unmerged_cache()) {
e8a8a4d7 640 error(_("you need to resolve your current index first"));
04c9e11f 641 return 1;
782c2d65 642 }
04c9e11f
JH
643
644 /* 2-way merge to the new branch */
fa7b3c2f 645 topts.initial_checkout = is_cache_unborn();
04c9e11f
JH
646 topts.update = 1;
647 topts.merge = 1;
c8a3ea1f 648 topts.gently = opts->merge && old_branch_info->commit;
870ebdb9 649 topts.verbose_update = opts->show_progress;
04c9e11f 650 topts.fn = twoway_merge;
c1d7036b
NTND
651 if (opts->overwrite_ignore) {
652 topts.dir = xcalloc(1, sizeof(*topts.dir));
653 topts.dir->flags |= DIR_SHOW_IGNORED;
654 setup_standard_excludes(topts.dir);
655 }
c8a3ea1f
BW
656 tree = parse_tree_indirect(old_branch_info->commit ?
657 &old_branch_info->commit->object.oid :
eb0ccfd7 658 the_hash_algo->empty_tree);
04c9e11f 659 init_tree_desc(&trees[0], tree->buffer, tree->size);
c8a3ea1f 660 tree = parse_tree_indirect(&new_branch_info->commit->object.oid);
04c9e11f
JH
661 init_tree_desc(&trees[1], tree->buffer, tree->size);
662
291d823e 663 ret = unpack_trees(2, trees, &topts);
1c41d280 664 clear_unpack_trees_porcelain(&topts);
49d833dc 665 if (ret == -1) {
782c2d65
DB
666 /*
667 * Unpack couldn't do a trivial merge; either
668 * give up or do a real merge, depending on
669 * whether the merge flag was used.
670 */
671 struct tree *result;
672 struct tree *work;
8a2fce18 673 struct merge_options o;
782c2d65
DB
674 if (!opts->merge)
675 return 1;
64da3ae5
JH
676
677 /*
c8a3ea1f 678 * Without old_branch_info->commit, the below is the same as
64da3ae5
JH
679 * the two-tree unpack we already tried and failed.
680 */
c8a3ea1f 681 if (!old_branch_info->commit)
64da3ae5 682 return 1;
782c2d65
DB
683
684 /* Do more real merge */
685
686 /*
687 * We update the index fully, then write the
688 * tree from the index, then merge the new
689 * branch with the current tree, with the old
690 * branch as the base. Then we reset the index
691 * (but not the working tree) to the new
692 * branch, leaving the working tree as the
693 * merged version, but skipping unmerged
694 * entries in the index.
695 */
696
610d55af 697 add_files_to_cache(NULL, NULL, 0);
7610fa57
JN
698 /*
699 * NEEDSWORK: carrying over local changes
700 * when branches have different end-of-line
701 * normalization (or clean+smudge rules) is
702 * a pain; plumb in an option to set
703 * o.renormalize?
704 */
0d6caa2d 705 init_merge_options(&o, the_repository);
8a2fce18
MV
706 o.verbosity = 0;
707 work = write_tree_from_memory(&o);
782c2d65 708
2e27bd77
DS
709 ret = reset_tree(get_commit_tree(new_branch_info->commit),
710 opts, 1,
a2b4994c 711 writeout_error);
782c2d65
DB
712 if (ret)
713 return ret;
c8a3ea1f
BW
714 o.ancestor = old_branch_info->name;
715 o.branch1 = new_branch_info->name;
8a2fce18 716 o.branch2 = "local";
2e27bd77
DS
717 ret = merge_trees(&o,
718 get_commit_tree(new_branch_info->commit),
719 work,
720 get_commit_tree(old_branch_info->commit),
721 &result);
f241ff0d
JS
722 if (ret < 0)
723 exit(128);
2e27bd77
DS
724 ret = reset_tree(get_commit_tree(new_branch_info->commit),
725 opts, 0,
a2b4994c 726 writeout_error);
548009c0 727 strbuf_release(&o.obuf);
84a5750b
JH
728 if (ret)
729 return ret;
782c2d65
DB
730 }
731 }
732
aecf567c
DT
733 if (!active_cache_tree)
734 active_cache_tree = cache_tree();
735
736 if (!cache_tree_fully_valid(active_cache_tree))
3fd13cbc 737 cache_tree_update(&the_index, WRITE_TREE_SILENT | WRITE_TREE_REPAIR);
aecf567c 738
837e34eb 739 if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
e8a8a4d7 740 die(_("unable to write new index file"));
782c2d65 741
7fe4a728 742 if (!opts->force && !opts->quiet)
c8a3ea1f 743 show_local_changes(&new_branch_info->commit->object, &opts->diff_options);
782c2d65
DB
744
745 return 0;
746}
747
c8a3ea1f 748static void report_tracking(struct branch_info *new_branch_info)
79a1e6b4 749{
6d21bf96 750 struct strbuf sb = STRBUF_INIT;
c8a3ea1f 751 struct branch *branch = branch_get(new_branch_info->name);
79a1e6b4 752
f39a757d 753 if (!format_tracking_info(branch, &sb, AHEAD_BEHIND_FULL))
79a1e6b4 754 return;
6d21bf96
JH
755 fputs(sb.buf, stdout);
756 strbuf_release(&sb);
b0030db3 757}
79a1e6b4 758
a2b4994c 759static void update_refs_for_switch(const struct checkout_opts *opts,
c8a3ea1f
BW
760 struct branch_info *old_branch_info,
761 struct branch_info *new_branch_info)
782c2d65 762{
f285a2d7 763 struct strbuf msg = STRBUF_INIT;
3bed291a 764 const char *old_desc, *reflog_msg;
782c2d65 765 if (opts->new_branch) {
3631bf77 766 if (opts->new_orphan_branch) {
341fb286
CW
767 char *refname;
768
769 refname = mkpathdup("refs/heads/%s", opts->new_orphan_branch);
770 if (opts->new_branch_log &&
771 !should_autocreate_reflog(refname)) {
1a83c240 772 int ret;
a4c653df 773 struct strbuf err = STRBUF_INIT;
3631bf77 774
abd0cd3a 775 ret = safe_create_reflog(refname, 1, &err);
1a83c240 776 if (ret) {
a4c653df
DT
777 fprintf(stderr, _("Can not do reflog for '%s': %s\n"),
778 opts->new_orphan_branch, err.buf);
779 strbuf_release(&err);
341fb286 780 free(refname);
3631bf77
EM
781 return;
782 }
abd0cd3a 783 strbuf_release(&err);
3631bf77 784 }
341fb286 785 free(refname);
3631bf77
EM
786 }
787 else
4edce172
NTND
788 create_branch(the_repository,
789 opts->new_branch, new_branch_info->name,
02ac9837 790 opts->new_branch_force ? 1 : 0,
39bd6f72 791 opts->new_branch_force ? 1 : 0,
e2bbd0cc 792 opts->new_branch_log,
f9a482e6 793 opts->quiet,
39bd6f72 794 opts->track);
c8a3ea1f
BW
795 new_branch_info->name = opts->new_branch;
796 setup_branch_path(new_branch_info);
782c2d65
DB
797 }
798
c8a3ea1f
BW
799 old_desc = old_branch_info->name;
800 if (!old_desc && old_branch_info->commit)
801 old_desc = oid_to_hex(&old_branch_info->commit->object.oid);
3bed291a
RR
802
803 reflog_msg = getenv("GIT_REFLOG_ACTION");
804 if (!reflog_msg)
805 strbuf_addf(&msg, "checkout: moving from %s to %s",
c8a3ea1f 806 old_desc ? old_desc : "(invalid)", new_branch_info->name);
3bed291a
RR
807 else
808 strbuf_insert(&msg, 0, reflog_msg, strlen(reflog_msg));
782c2d65 809
c8a3ea1f 810 if (!strcmp(new_branch_info->name, "HEAD") && !new_branch_info->path && !opts->force_detach) {
f8bd36a4 811 /* Nothing to do. */
c8a3ea1f
BW
812 } else if (opts->force_detach || !new_branch_info->path) { /* No longer on any branch. */
813 update_ref(msg.buf, "HEAD", &new_branch_info->commit->object.oid, NULL,
91774afc 814 REF_NO_DEREF, UPDATE_REFS_DIE_ON_ERR);
f8bd36a4 815 if (!opts->quiet) {
c8a3ea1f 816 if (old_branch_info->path &&
779b88a9 817 advice_detached_head && !opts->force_detach)
c8a3ea1f
BW
818 detach_advice(new_branch_info->name);
819 describe_detached_head(_("HEAD is now at"), new_branch_info->commit);
f8bd36a4 820 }
c8a3ea1f
BW
821 } else if (new_branch_info->path) { /* Switch branches. */
822 if (create_symref("HEAD", new_branch_info->path, msg.buf) < 0)
4636f651 823 die(_("unable to update HEAD"));
782c2d65 824 if (!opts->quiet) {
c8a3ea1f 825 if (old_branch_info->path && !strcmp(new_branch_info->path, old_branch_info->path)) {
39bd6f72
JN
826 if (opts->new_branch_force)
827 fprintf(stderr, _("Reset branch '%s'\n"),
c8a3ea1f 828 new_branch_info->name);
39bd6f72
JN
829 else
830 fprintf(stderr, _("Already on '%s'\n"),
c8a3ea1f 831 new_branch_info->name);
08eaa4be
ÆAB
832 } else if (opts->new_branch) {
833 if (opts->branch_exists)
c8a3ea1f 834 fprintf(stderr, _("Switched to and reset branch '%s'\n"), new_branch_info->name);
08eaa4be 835 else
c8a3ea1f 836 fprintf(stderr, _("Switched to a new branch '%s'\n"), new_branch_info->name);
08eaa4be 837 } else {
e8a8a4d7 838 fprintf(stderr, _("Switched to branch '%s'\n"),
c8a3ea1f 839 new_branch_info->name);
08eaa4be 840 }
782c2d65 841 }
c8a3ea1f
BW
842 if (old_branch_info->path && old_branch_info->name) {
843 if (!ref_exists(old_branch_info->path) && reflog_exists(old_branch_info->path))
844 delete_reflog(old_branch_info->path);
3631bf77 845 }
782c2d65 846 }
4edce172 847 remove_branch_state(the_repository);
782c2d65 848 strbuf_release(&msg);
32669671 849 if (!opts->quiet &&
c8a3ea1f
BW
850 (new_branch_info->path || (!opts->force_detach && !strcmp(new_branch_info->name, "HEAD"))))
851 report_tracking(new_branch_info);
782c2d65
DB
852}
853
468224e5 854static int add_pending_uninteresting_ref(const char *refname,
fcb615f5 855 const struct object_id *oid,
468224e5 856 int flags, void *cb_data)
8e2dc6ac 857{
a58a1b01 858 add_pending_oid(cb_data, refname, oid, UNINTERESTING);
5c08dc48
JK
859 return 0;
860}
8e2dc6ac
JH
861
862static void describe_one_orphan(struct strbuf *sb, struct commit *commit)
863{
0be240cc 864 strbuf_addstr(sb, " ");
30e677e0 865 strbuf_add_unique_abbrev(sb, &commit->object.oid, DEFAULT_ABBREV);
0be240cc 866 strbuf_addch(sb, ' ');
3c621839
JK
867 if (!parse_commit(commit))
868 pp_commit_easy(CMIT_FMT_ONELINE, commit, sb);
8e2dc6ac
JH
869 strbuf_addch(sb, '\n');
870}
871
872#define ORPHAN_CUTOFF 4
873static void suggest_reattach(struct commit *commit, struct rev_info *revs)
874{
875 struct commit *c, *last = NULL;
876 struct strbuf sb = STRBUF_INIT;
877 int lost = 0;
878 while ((c = get_revision(revs)) != NULL) {
879 if (lost < ORPHAN_CUTOFF)
880 describe_one_orphan(&sb, c);
881 last = c;
882 lost++;
883 }
884 if (ORPHAN_CUTOFF < lost) {
885 int more = lost - ORPHAN_CUTOFF;
886 if (more == 1)
887 describe_one_orphan(&sb, last);
888 else
f06f08b7 889 strbuf_addf(&sb, _(" ... and %d more.\n"), more);
8e2dc6ac
JH
890 }
891
892 fprintf(stderr,
f06f08b7
ÆAB
893 Q_(
894 /* The singular version */
895 "Warning: you are leaving %d commit behind, "
896 "not connected to\n"
897 "any of your branches:\n\n"
0faf2474 898 "%s\n",
f06f08b7
ÆAB
899 /* The plural version */
900 "Warning: you are leaving %d commits behind, "
8e2dc6ac
JH
901 "not connected to\n"
902 "any of your branches:\n\n"
f807b3dc 903 "%s\n",
f06f08b7
ÆAB
904 /* Give ngettext() the count */
905 lost),
906 lost,
f807b3dc 907 sb.buf);
8e2dc6ac 908 strbuf_release(&sb);
f807b3dc
JH
909
910 if (advice_detached_head)
911 fprintf(stderr,
fc792ca8
TS
912 Q_(
913 /* The singular version */
914 "If you want to keep it by creating a new branch, "
915 "this may be a good time\nto do so with:\n\n"
916 " git branch <new-branch-name> %s\n\n",
917 /* The plural version */
f807b3dc
JH
918 "If you want to keep them by creating a new branch, "
919 "this may be a good time\nto do so with:\n\n"
fc792ca8
TS
920 " git branch <new-branch-name> %s\n\n",
921 /* Give ngettext() the count */
922 lost),
aab9583f 923 find_unique_abbrev(&commit->object.oid, DEFAULT_ABBREV));
8e2dc6ac
JH
924}
925
926/*
927 * We are about to leave commit that was at the tip of a detached
928 * HEAD. If it is not reachable from any ref, this is the last chance
929 * for the user to do so without resorting to reflog.
930 */
c8a3ea1f 931static void orphaned_commit_warning(struct commit *old_commit, struct commit *new_commit)
8e2dc6ac 932{
8e2dc6ac 933 struct rev_info revs;
c8a3ea1f 934 struct object *object = &old_commit->object;
8e2dc6ac 935
2abf3503 936 repo_init_revisions(the_repository, &revs, NULL);
468224e5
RS
937 setup_revisions(0, NULL, &revs, NULL);
938
939 object->flags &= ~UNINTERESTING;
f2fd0760 940 add_pending_object(&revs, object, oid_to_hex(&object->oid));
468224e5 941
fcb615f5 942 for_each_ref(add_pending_uninteresting_ref, &revs);
c8a3ea1f 943 add_pending_oid(&revs, "HEAD", &new_commit->object.oid, UNINTERESTING);
468224e5 944
8e2dc6ac 945 if (prepare_revision_walk(&revs))
6c80cd29 946 die(_("internal error in revision walk"));
c8a3ea1f
BW
947 if (!(old_commit->object.flags & UNINTERESTING))
948 suggest_reattach(old_commit, &revs);
8e2dc6ac 949 else
c8a3ea1f 950 describe_detached_head(_("Previous HEAD position was"), old_commit);
5c08dc48 951
b2ccdf7f 952 /* Clean up objects used, as they will be reused. */
a9a03fa0 953 clear_commit_marks_all(ALL_REV_FLAGS);
8e2dc6ac
JH
954}
955
e51e3057 956static int switch_branches(const struct checkout_opts *opts,
c8a3ea1f 957 struct branch_info *new_branch_info)
782c2d65
DB
958{
959 int ret = 0;
c8a3ea1f 960 struct branch_info old_branch_info;
96ec7b1e 961 void *path_to_free;
60af7691 962 struct object_id rev;
a2b4994c 963 int flag, writeout_error = 0;
c8a3ea1f
BW
964 memset(&old_branch_info, 0, sizeof(old_branch_info));
965 old_branch_info.path = path_to_free = resolve_refdup("HEAD", 0, &rev, &flag);
966 if (old_branch_info.path)
21e1ee8f 967 old_branch_info.commit = lookup_commit_reference_gently(the_repository, &rev, 1);
96ec7b1e 968 if (!(flag & REF_ISSYMREF))
c8a3ea1f 969 old_branch_info.path = NULL;
782c2d65 970
c8a3ea1f
BW
971 if (old_branch_info.path)
972 skip_prefix(old_branch_info.path, "refs/heads/", &old_branch_info.name);
782c2d65 973
c8a3ea1f
BW
974 if (!new_branch_info->name) {
975 new_branch_info->name = "HEAD";
976 new_branch_info->commit = old_branch_info.commit;
977 if (!new_branch_info->commit)
e8a8a4d7 978 die(_("You are on a branch yet to be born"));
c8a3ea1f 979 parse_commit_or_die(new_branch_info->commit);
782c2d65
DB
980 }
981
fa655d84
BP
982 /* optimize the "checkout -b <new_branch> path */
983 if (skip_merge_working_tree(opts, &old_branch_info, new_branch_info)) {
984 if (!checkout_optimize_new_branch && !opts->quiet) {
985 if (read_cache_preload(NULL) < 0)
986 return error(_("index file corrupt"));
987 show_local_changes(&new_branch_info->commit->object, &opts->diff_options);
988 }
989 } else {
990 ret = merge_working_tree(opts, &old_branch_info, new_branch_info, &writeout_error);
991 if (ret) {
992 free(path_to_free);
993 return ret;
994 }
96ec7b1e 995 }
782c2d65 996
c8a3ea1f
BW
997 if (!opts->quiet && !old_branch_info.path && old_branch_info.commit && new_branch_info->commit != old_branch_info.commit)
998 orphaned_commit_warning(old_branch_info.commit, new_branch_info->commit);
77ebd56d 999
c8a3ea1f 1000 update_refs_for_switch(opts, &old_branch_info, new_branch_info);
782c2d65 1001
c8a3ea1f 1002 ret = post_checkout_hook(old_branch_info.commit, new_branch_info->commit, 1);
96ec7b1e 1003 free(path_to_free);
a2b4994c 1004 return ret || writeout_error;
782c2d65
DB
1005}
1006
0cf8581e
JH
1007static int git_checkout_config(const char *var, const char *value, void *cb)
1008{
fa655d84
BP
1009 if (!strcmp(var, "checkout.optimizenewbranch")) {
1010 checkout_optimize_new_branch = git_config_bool(var, value);
1011 return 0;
1012 }
1013
175f6e59
JS
1014 if (!strcmp(var, "diff.ignoresubmodules")) {
1015 struct checkout_opts *opts = cb;
1016 handle_ignore_submodules_arg(&opts->diff_options, value);
1017 return 0;
1018 }
23b4c7bc 1019
59556548 1020 if (starts_with(var, "submodule."))
7463e2ec 1021 return git_default_submodule_config(var, value, NULL);
23b4c7bc 1022
175f6e59 1023 return git_xmerge_config(var, value, NULL);
0cf8581e
JH
1024}
1025
09ebad6f
JN
1026static int parse_branchname_arg(int argc, const char **argv,
1027 int dwim_new_local_branch_ok,
c8a3ea1f 1028 struct branch_info *new_branch_info,
10f102be 1029 struct checkout_opts *opts,
3c87aa94
ÆAB
1030 struct object_id *rev,
1031 int *dwim_remotes_matched)
09ebad6f 1032{
10f102be
NTND
1033 struct tree **source_tree = &opts->source_tree;
1034 const char **new_branch = &opts->new_branch;
09ebad6f 1035 int argcount = 0;
60af7691 1036 struct object_id branch_rev;
09ebad6f 1037 const char *arg;
bca39695
MM
1038 int dash_dash_pos;
1039 int has_dash_dash = 0;
1040 int i;
09ebad6f
JN
1041
1042 /*
1043 * case 1: git checkout <ref> -- [<paths>]
1044 *
1045 * <ref> must be a valid tree, everything after the '--' must be
1046 * a path.
1047 *
1048 * case 2: git checkout -- [<paths>]
1049 *
1050 * everything after the '--' must be paths.
1051 *
a047fafc 1052 * case 3: git checkout <something> [--]
09ebad6f 1053 *
a047fafc
MM
1054 * (a) If <something> is a commit, that is to
1055 * switch to the branch or detach HEAD at it. As a special case,
1056 * if <something> is A...B (missing A or B means HEAD but you can
1057 * omit at most one side), and if there is a unique merge base
1058 * between A and B, A...B names that merge base.
09ebad6f 1059 *
a047fafc 1060 * (b) If <something> is _not_ a commit, either "--" is present
01689909 1061 * or <something> is not a path, no -t or -b was given, and
a047fafc 1062 * and there is a tracking branch whose name is <something>
8d7b558b
ÆAB
1063 * in one and only one remote (or if the branch exists on the
1064 * remote named in checkout.defaultRemote), then this is a
1065 * short-hand to fork local <something> from that
1066 * remote-tracking branch.
09ebad6f 1067 *
a047fafc
MM
1068 * (c) Otherwise, if "--" is present, treat it like case (1).
1069 *
1070 * (d) Otherwise :
1071 * - if it's a reference, treat it like case (1)
1072 * - else if it's a path, treat it like case (2)
1073 * - else: fail.
1074 *
1075 * case 4: git checkout <something> <paths>
1076 *
1077 * The first argument must not be ambiguous.
09ebad6f
JN
1078 * - If it's *only* a reference, treat it like case (1).
1079 * - If it's only a path, treat it like case (2).
1080 * - else: fail.
1081 *
1082 */
1083 if (!argc)
1084 return 0;
1085
09ebad6f 1086 arg = argv[0];
bca39695
MM
1087 dash_dash_pos = -1;
1088 for (i = 0; i < argc; i++) {
1089 if (!strcmp(argv[i], "--")) {
1090 dash_dash_pos = i;
1091 break;
1092 }
1093 }
1094 if (dash_dash_pos == 0)
1095 return 1; /* case (2) */
1096 else if (dash_dash_pos == 1)
1097 has_dash_dash = 1; /* case (3) or (1) */
1098 else if (dash_dash_pos >= 2)
1099 die(_("only one reference expected, %d given."), dash_dash_pos);
0f086e6d 1100 opts->count_checkout_paths = !opts->quiet && !has_dash_dash;
09ebad6f
JN
1101
1102 if (!strcmp(arg, "-"))
1103 arg = "@{-1}";
1104
151b2911 1105 if (get_oid_mb(arg, rev)) {
a047fafc
MM
1106 /*
1107 * Either case (3) or (4), with <something> not being
1108 * a commit, or an attempt to use case (1) with an
1109 * invalid ref.
1110 *
1111 * It's likely an error, but we need to find out if
1112 * we should auto-create the branch, case (3).(b).
1113 */
1114 int recover_with_dwim = dwim_new_local_branch_ok;
1115
be4908f1
NTND
1116 int could_be_checkout_paths = !has_dash_dash &&
1117 check_filename(opts->prefix, arg);
1118
1119 if (!has_dash_dash && !no_wildcard(arg))
a047fafc 1120 recover_with_dwim = 0;
be4908f1 1121
a047fafc
MM
1122 /*
1123 * Accept "git checkout foo" and "git checkout foo --"
1124 * as candidates for dwim.
1125 */
1126 if (!(argc == 1 && !has_dash_dash) &&
1127 !(argc == 2 && has_dash_dash))
1128 recover_with_dwim = 0;
1129
1130 if (recover_with_dwim) {
3c87aa94
ÆAB
1131 const char *remote = unique_tracking_name(arg, rev,
1132 dwim_remotes_matched);
a047fafc 1133 if (remote) {
be4908f1
NTND
1134 if (could_be_checkout_paths)
1135 die(_("'%s' could be both a local file and a tracking branch.\n"
1136 "Please use -- (and optionally --no-guess) to disambiguate"),
1137 arg);
a047fafc
MM
1138 *new_branch = arg;
1139 arg = remote;
1140 /* DWIMmed to create local branch, case (3).(b) */
1141 } else {
1142 recover_with_dwim = 0;
1143 }
1144 }
1145
1146 if (!recover_with_dwim) {
1147 if (has_dash_dash)
1148 die(_("invalid reference: %s"), arg);
09ebad6f
JN
1149 return argcount;
1150 }
1151 }
1152
1153 /* we can't end up being in (2) anymore, eat the argument */
1154 argcount++;
1155 argv++;
1156 argc--;
1157
c8a3ea1f
BW
1158 new_branch_info->name = arg;
1159 setup_branch_path(new_branch_info);
09ebad6f 1160
c8a3ea1f
BW
1161 if (!check_refname_format(new_branch_info->path, 0) &&
1162 !read_ref(new_branch_info->path, &branch_rev))
60af7691 1163 oidcpy(rev, &branch_rev);
09ebad6f 1164 else
c8a3ea1f 1165 new_branch_info->path = NULL; /* not an existing branch */
09ebad6f 1166
21e1ee8f 1167 new_branch_info->commit = lookup_commit_reference_gently(the_repository, rev, 1);
c8a3ea1f 1168 if (!new_branch_info->commit) {
09ebad6f 1169 /* not a commit */
a9dbc179 1170 *source_tree = parse_tree_indirect(rev);
09ebad6f 1171 } else {
c8a3ea1f 1172 parse_commit_or_die(new_branch_info->commit);
2e27bd77 1173 *source_tree = get_commit_tree(new_branch_info->commit);
09ebad6f
JN
1174 }
1175
1176 if (!*source_tree) /* case (1): want a tree */
6c80cd29 1177 die(_("reference is not a tree: %s"), arg);
7f82b24e 1178 if (!has_dash_dash) { /* case (3).(d) -> (1) */
09ebad6f
JN
1179 /*
1180 * Do not complain the most common case
1181 * git checkout branch
1182 * even if there happen to be a file called 'branch';
1183 * it would be extremely annoying.
1184 */
1185 if (argc)
b829b943 1186 verify_non_filename(opts->prefix, arg);
09ebad6f
JN
1187 } else {
1188 argcount++;
1189 argv++;
1190 argc--;
1191 }
1192
1193 return argcount;
1194}
1195
a2b4994c 1196static int switch_unborn_to_new_branch(const struct checkout_opts *opts)
abe19980
JH
1197{
1198 int status;
1199 struct strbuf branch_ref = STRBUF_INIT;
1200
8ced1aa0
CW
1201 if (!opts->new_branch)
1202 die(_("You are on a branch yet to be born"));
abe19980
JH
1203 strbuf_addf(&branch_ref, "refs/heads/%s", opts->new_branch);
1204 status = create_symref("HEAD", branch_ref.buf, "checkout -b");
1205 strbuf_release(&branch_ref);
afa8c07a
JK
1206 if (!opts->quiet)
1207 fprintf(stderr, _("Switched to a new branch '%s'\n"),
1208 opts->new_branch);
abe19980
JH
1209 return status;
1210}
1211
b6312c27 1212static int checkout_branch(struct checkout_opts *opts,
c8a3ea1f 1213 struct branch_info *new_branch_info)
b6312c27 1214{
817b345a 1215 if (opts->pathspec.nr)
b6312c27
NTND
1216 die(_("paths cannot be used with switching branches"));
1217
1218 if (opts->patch_mode)
1219 die(_("'%s' cannot be used with switching branches"),
1220 "--patch");
1221
1222 if (opts->writeout_stage)
1223 die(_("'%s' cannot be used with switching branches"),
1224 "--ours/--theirs");
1225
1226 if (opts->force && opts->merge)
1227 die(_("'%s' cannot be used with '%s'"), "-f", "-m");
1228
1229 if (opts->force_detach && opts->new_branch)
1230 die(_("'%s' cannot be used with '%s'"),
1231 "--detach", "-b/-B/--orphan");
1232
1233 if (opts->new_orphan_branch) {
1234 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1235 die(_("'%s' cannot be used with '%s'"), "--orphan", "-t");
1236 } else if (opts->force_detach) {
1237 if (opts->track != BRANCH_TRACK_UNSPECIFIED)
1238 die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
1239 } else if (opts->track == BRANCH_TRACK_UNSPECIFIED)
1240 opts->track = git_branch_track;
1241
c8a3ea1f 1242 if (new_branch_info->name && !new_branch_info->commit)
b6312c27 1243 die(_("Cannot switch branch to a non-commit '%s'"),
c8a3ea1f 1244 new_branch_info->name);
b6312c27 1245
c8a3ea1f 1246 if (new_branch_info->path && !opts->force_detach && !opts->new_branch &&
c265c533 1247 !opts->ignore_other_worktrees) {
e1c1ab9d 1248 int flag;
efbd4fdf 1249 char *head_ref = resolve_refdup("HEAD", 0, NULL, &flag);
e1c1ab9d 1250 if (head_ref &&
c8a3ea1f
BW
1251 (!(flag & REF_ISSYMREF) || strcmp(head_ref, new_branch_info->path)))
1252 die_if_checked_out(new_branch_info->path, 1);
e1c1ab9d
NTND
1253 free(head_ref);
1254 }
1255
c8a3ea1f 1256 if (!new_branch_info->commit && opts->new_branch) {
60af7691 1257 struct object_id rev;
b6312c27
NTND
1258 int flag;
1259
34c290a6 1260 if (!read_ref_full("HEAD", 0, &rev, &flag) &&
60af7691 1261 (flag & REF_ISSYMREF) && is_null_oid(&rev))
b6312c27
NTND
1262 return switch_unborn_to_new_branch(opts);
1263 }
c8a3ea1f 1264 return switch_branches(opts, new_branch_info);
b6312c27
NTND
1265}
1266
782c2d65
DB
1267int cmd_checkout(int argc, const char **argv, const char *prefix)
1268{
1269 struct checkout_opts opts;
c8a3ea1f 1270 struct branch_info new_branch_info;
eac5a401 1271 char *conflict_style = NULL;
be4908f1 1272 int dwim_new_local_branch, no_dwim_new_local_branch = 0;
3c87aa94 1273 int dwim_remotes_matched = 0;
782c2d65 1274 struct option options[] = {
e05a1093
NTND
1275 OPT__QUIET(&opts.quiet, N_("suppress progress reporting")),
1276 OPT_STRING('b', NULL, &opts.new_branch, N_("branch"),
1277 N_("create and checkout a new branch")),
1278 OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"),
1279 N_("create/reset and checkout a branch")),
d5d09d47 1280 OPT_BOOL('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")),
e923a8ab 1281 OPT_BOOL(0, "detach", &opts.force_detach, N_("detach HEAD at named commit")),
e05a1093 1282 OPT_SET_INT('t', "track", &opts.track, N_("set upstream info for new branch"),
9ed36cfa 1283 BRANCH_TRACK_EXPLICIT),
e703d711 1284 OPT_STRING(0, "orphan", &opts.new_orphan_branch, N_("new-branch"), N_("new unparented branch")),
3fe735e7
NTND
1285 OPT_SET_INT_F('2', "ours", &opts.writeout_stage,
1286 N_("checkout our version for unmerged files"),
1287 2, PARSE_OPT_NONEG),
1288 OPT_SET_INT_F('3', "theirs", &opts.writeout_stage,
1289 N_("checkout their version for unmerged files"),
1290 3, PARSE_OPT_NONEG),
77afafb2
NTND
1291 OPT__FORCE(&opts.force, N_("force checkout (throw away local modifications)"),
1292 PARSE_OPT_NOCOMPLETE),
d5d09d47 1293 OPT_BOOL('m', "merge", &opts.merge, N_("perform a 3-way merge with the new branch")),
77afafb2
NTND
1294 OPT_BOOL_F(0, "overwrite-ignore", &opts.overwrite_ignore,
1295 N_("update ignored files (default)"),
1296 PARSE_OPT_NOCOMPLETE),
e05a1093
NTND
1297 OPT_STRING(0, "conflict", &conflict_style, N_("style"),
1298 N_("conflict style (merge or diff3)")),
d5d09d47 1299 OPT_BOOL('p', "patch", &opts.patch_mode, N_("select hunks interactively")),
08d595dc
NTND
1300 OPT_BOOL(0, "ignore-skip-worktree-bits", &opts.ignore_skipworktree,
1301 N_("do not limit pathspecs to sparse entries only")),
be4908f1
NTND
1302 OPT_BOOL(0, "no-guess", &no_dwim_new_local_branch,
1303 N_("do not second guess 'git checkout <no-such-branch>'")),
1d0fa898
NTND
1304 OPT_BOOL(0, "ignore-other-worktrees", &opts.ignore_other_worktrees,
1305 N_("do not check if another worktree is holding the given ref")),
58b75bd6 1306 { OPTION_CALLBACK, 0, "recurse-submodules", NULL,
1fc458d9 1307 "checkout", "control recursive updating of submodules",
d7a3803f 1308 PARSE_OPT_OPTARG, option_parse_recurse_submodules_worktree_updater },
870ebdb9 1309 OPT_BOOL(0, "progress", &opts.show_progress, N_("force progress reporting")),
b249b552 1310 OPT_END(),
782c2d65
DB
1311 };
1312
1313 memset(&opts, 0, sizeof(opts));
c8a3ea1f 1314 memset(&new_branch_info, 0, sizeof(new_branch_info));
c1d7036b 1315 opts.overwrite_ignore = 1;
e51e3057 1316 opts.prefix = prefix;
870ebdb9 1317 opts.show_progress = -1;
782c2d65 1318
175f6e59 1319 git_config(git_checkout_config, &opts);
782c2d65 1320
9188ed89 1321 opts.track = BRANCH_TRACK_UNSPECIFIED;
782c2d65 1322
37782920 1323 argc = parse_options(argc, argv, prefix, options, checkout_usage,
f5242ebf 1324 PARSE_OPT_KEEP_DASHDASH);
859fdaba 1325
be4908f1 1326 dwim_new_local_branch = !no_dwim_new_local_branch;
870ebdb9
ECA
1327 if (opts.show_progress < 0) {
1328 if (opts.quiet)
1329 opts.show_progress = 0;
1330 else
1331 opts.show_progress = isatty(2);
1332 }
1333
b6312c27
NTND
1334 if (conflict_style) {
1335 opts.merge = 1; /* implied */
1336 git_xmerge_config("merge.conflictstyle", conflict_style, NULL);
1337 }
02ac9837 1338
b6312c27
NTND
1339 if ((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) > 1)
1340 die(_("-b, -B and --orphan are mutually exclusive"));
02ac9837 1341
b6312c27
NTND
1342 /*
1343 * From here on, new_branch will contain the branch to be checked out,
1344 * and new_branch_force and new_orphan_branch will tell us which one of
1345 * -b/-B/--orphan is being used.
1346 */
02ac9837
TRC
1347 if (opts.new_branch_force)
1348 opts.new_branch = opts.new_branch_force;
1349
b6312c27
NTND
1350 if (opts.new_orphan_branch)
1351 opts.new_branch = opts.new_orphan_branch;
32669671 1352
b6312c27
NTND
1353 /* --track without -b/-B/--orphan should DWIM */
1354 if (opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {
9188ed89
AR
1355 const char *argv0 = argv[0];
1356 if (!argc || !strcmp(argv0, "--"))
1a07e59c 1357 die(_("--track needs a branch name"));
e3f1da98
RS
1358 skip_prefix(argv0, "refs/", &argv0);
1359 skip_prefix(argv0, "remotes/", &argv0);
9188ed89
AR
1360 argv0 = strchr(argv0, '/');
1361 if (!argv0 || !argv0[1])
1a07e59c 1362 die(_("missing branch name; try -b"));
9188ed89 1363 opts.new_branch = argv0 + 1;
bb0ceb62
JS
1364 }
1365
859fdaba 1366 /*
09ebad6f
JN
1367 * Extract branch name from command line arguments, so
1368 * all that is left is pathspecs.
859fdaba 1369 *
09ebad6f 1370 * Handle
70c9ac2f 1371 *
09ebad6f
JN
1372 * 1) git checkout <tree> -- [<paths>]
1373 * 2) git checkout -- [<paths>]
1374 * 3) git checkout <something> [<paths>]
859fdaba 1375 *
09ebad6f
JN
1376 * including "last branch" syntax and DWIM-ery for names of
1377 * remote branches, erroring out for invalid or ambiguous cases.
859fdaba 1378 */
782c2d65 1379 if (argc) {
60af7691 1380 struct object_id rev;
09ebad6f 1381 int dwim_ok =
e51e3057 1382 !opts.patch_mode &&
09ebad6f
JN
1383 dwim_new_local_branch &&
1384 opts.track == BRANCH_TRACK_UNSPECIFIED &&
1385 !opts.new_branch;
f8bd36a4 1386 int n = parse_branchname_arg(argc, argv, dwim_ok,
3c87aa94
ÆAB
1387 &new_branch_info, &opts, &rev,
1388 &dwim_remotes_matched);
09ebad6f
JN
1389 argv += n;
1390 argc -= n;
782c2d65
DB
1391 }
1392
782c2d65 1393 if (argc) {
480ca644
NTND
1394 parse_pathspec(&opts.pathspec, 0,
1395 opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN : 0,
1396 prefix, argv);
301e42ed 1397
817b345a 1398 if (!opts.pathspec.nr)
e8a8a4d7 1399 die(_("invalid path specification"));
301e42ed 1400
b6312c27
NTND
1401 /*
1402 * Try to give more helpful suggestion.
1403 * new_branch && argc > 1 will be caught later.
1404 */
1405 if (opts.new_branch && argc == 1)
6c486862
JNA
1406 die(_("'%s' is not a commit and a branch '%s' cannot be created from it"),
1407 argv[0], opts.new_branch);
782c2d65 1408
32669671 1409 if (opts.force_detach)
b6312c27
NTND
1410 die(_("git checkout: --detach does not take a path argument '%s'"),
1411 argv[0]);
32669671 1412
0cf8581e 1413 if (1 < !!opts.writeout_stage + !!opts.force + !!opts.merge)
b6312c27
NTND
1414 die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
1415 "checking out of the index."));
782c2d65
DB
1416 }
1417
352eadc4 1418 if (opts.new_branch) {
f285a2d7 1419 struct strbuf buf = STRBUF_INIT;
55c4a673 1420
bc1c9c0e
JH
1421 if (opts.new_branch_force)
1422 opts.branch_exists = validate_branchname(opts.new_branch, &buf);
1423 else
1424 opts.branch_exists =
1425 validate_new_branchname(opts.new_branch, &buf, 0);
352eadc4
DB
1426 strbuf_release(&buf);
1427 }
1428
886e1084 1429 UNLEAK(opts);
1c550553
ÆAB
1430 if (opts.patch_mode || opts.pathspec.nr) {
1431 int ret = checkout_paths(&opts, new_branch_info.name);
ad8d5104
ÆAB
1432 if (ret && dwim_remotes_matched > 1 &&
1433 advice_checkout_ambiguous_remote_branch_name)
1434 advise(_("'%s' matched more than one remote tracking branch.\n"
1435 "We found %d remotes with a reference that matched. So we fell back\n"
1436 "on trying to resolve the argument as a path, but failed there too!\n"
1437 "\n"
1438 "If you meant to check out a remote tracking branch on, e.g. 'origin',\n"
1439 "you can do so by fully qualifying the name with the --track option:\n"
1440 "\n"
8d7b558b
ÆAB
1441 " git checkout --track origin/<name>\n"
1442 "\n"
1443 "If you'd like to always have checkouts of an ambiguous <name> prefer\n"
1444 "one remote, e.g. the 'origin' remote, consider setting\n"
1445 "checkout.defaultRemote=origin in your config."),
ad8d5104
ÆAB
1446 argv[0],
1447 dwim_remotes_matched);
1c550553
ÆAB
1448 return ret;
1449 } else {
c8a3ea1f 1450 return checkout_branch(&opts, &new_branch_info);
1c550553 1451 }
782c2d65 1452}