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