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