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