checkout.c 32.8 KB
Newer Older
D
Daniel Barkalow 已提交
1 2 3 4 5 6 7
#include "cache.h"
#include "builtin.h"
#include "parse-options.h"
#include "refs.h"
#include "commit.h"
#include "tree.h"
#include "tree-walk.h"
8
#include "cache-tree.h"
D
Daniel Barkalow 已提交
9 10 11 12 13 14 15
#include "unpack-trees.h"
#include "dir.h"
#include "run-command.h"
#include "merge-recursive.h"
#include "branch.h"
#include "diff.h"
#include "revision.h"
16
#include "remote.h"
17 18 19
#include "blob.h"
#include "xdiff-interface.h"
#include "ll-merge.h"
20
#include "resolve-undo.h"
21
#include "submodule.h"
J
Jeff King 已提交
22
#include "argv-array.h"
D
Daniel Barkalow 已提交
23 24

static const char * const checkout_usage[] = {
25 26
	N_("git checkout [options] <branch>"),
	N_("git checkout [options] [<branch>] -- <file>..."),
D
Daniel Barkalow 已提交
27 28 29
	NULL,
};

30
struct checkout_opts {
31
	int patch_mode;
32 33 34
	int quiet;
	int merge;
	int force;
35
	int force_detach;
36
	int writeout_stage;
37
	int overwrite_ignore;
38
	int ignore_skipworktree;
39 40

	const char *new_branch;
T
Tay Ray Chuan 已提交
41
	const char *new_branch_force;
42
	const char *new_orphan_branch;
43 44
	int new_branch_log;
	enum branch_track track;
45
	struct diff_options diff_options;
46 47 48 49 50

	int branch_exists;
	const char *prefix;
	const char **pathspec;
	struct tree *source_tree;
51 52
};

D
Daniel Barkalow 已提交
53 54 55
static int post_checkout_hook(struct commit *old, struct commit *new,
			      int changed)
{
56 57 58 59
	return run_hook(NULL, "post-checkout",
			sha1_to_hex(old ? old->object.sha1 : null_sha1),
			sha1_to_hex(new ? new->object.sha1 : null_sha1),
			changed ? "1" : "0", NULL);
60 61
	/* "new" can be NULL when checking out from the index before
	   a commit exists. */
62

D
Daniel Barkalow 已提交
63 64 65
}

static int update_some(const unsigned char *sha1, const char *base, int baselen,
66
		const char *pathname, unsigned mode, int stage, void *context)
D
Daniel Barkalow 已提交
67 68 69 70 71 72 73 74 75 76 77 78
{
	int len;
	struct cache_entry *ce;

	if (S_ISDIR(mode))
		return READ_TREE_RECURSIVE;

	len = baselen + strlen(pathname);
	ce = xcalloc(1, cache_entry_size(len));
	hashcpy(ce->sha1, sha1);
	memcpy(ce->name, base, baselen);
	memcpy(ce->name + baselen, pathname, len - baselen);
79 80
	ce->ce_flags = create_ce_flags(0) | CE_UPDATE;
	ce->ce_namelen = len;
D
Daniel Barkalow 已提交
81 82 83 84 85 86 87
	ce->ce_mode = create_ce_mode(mode);
	add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
	return 0;
}

static int read_tree_some(struct tree *tree, const char **pathspec)
{
88 89 90 91
	struct pathspec ps;
	init_pathspec(&ps, pathspec);
	read_tree_recursive(tree, "", 0, 0, &ps, update_some, NULL);
	free_pathspec(&ps);
D
Daniel Barkalow 已提交
92 93 94 95 96 97 98 99

	/* update the index with the given tree's info
	 * for all args, expanding wildcards, and exit
	 * with any non-zero return code.
	 */
	return 0;
}

100 101 102 103 104 105 106 107
static int skip_same_name(struct cache_entry *ce, int pos)
{
	while (++pos < active_nr &&
	       !strcmp(active_cache[pos]->name, ce->name))
		; /* skip */
	return pos;
}

108 109 110 111 112 113 114 115
static int check_stage(int stage, struct cache_entry *ce, int pos)
{
	while (pos < active_nr &&
	       !strcmp(active_cache[pos]->name, ce->name)) {
		if (ce_stage(active_cache[pos]) == stage)
			return 0;
		pos++;
	}
116 117 118 119
	if (stage == 2)
		return error(_("path '%s' does not have our version"), ce->name);
	else
		return error(_("path '%s' does not have their version"), ce->name);
120 121
}

122
static int check_stages(unsigned stages, struct cache_entry *ce, int pos)
123
{
124 125 126 127 128 129 130 131 132 133 134 135 136
	unsigned seen = 0;
	const char *name = ce->name;

	while (pos < active_nr) {
		ce = active_cache[pos];
		if (strcmp(name, ce->name))
			break;
		seen |= (1 << ce_stage(ce));
		pos++;
	}
	if ((stages & seen) != stages)
		return error(_("path '%s' does not have all necessary versions"),
			     name);
137 138 139
	return 0;
}

140 141 142 143 144 145 146 147 148
static int checkout_stage(int stage, struct cache_entry *ce, int pos,
			  struct checkout *state)
{
	while (pos < active_nr &&
	       !strcmp(active_cache[pos]->name, ce->name)) {
		if (ce_stage(active_cache[pos]) == stage)
			return checkout_entry(active_cache[pos], state, NULL);
		pos++;
	}
149 150 151 152
	if (stage == 2)
		return error(_("path '%s' does not have our version"), ce->name);
	else
		return error(_("path '%s' does not have their version"), ce->name);
153
}
154

155 156 157 158 159 160 161 162
static int checkout_merged(int pos, struct checkout *state)
{
	struct cache_entry *ce = active_cache[pos];
	const char *path = ce->name;
	mmfile_t ancestor, ours, theirs;
	int status;
	unsigned char sha1[20];
	mmbuffer_t result_buf;
163
	unsigned char threeway[3][20];
164
	unsigned mode = 0;
165

166 167 168 169 170 171 172 173 174 175 176 177 178 179
	memset(threeway, 0, sizeof(threeway));
	while (pos < active_nr) {
		int stage;
		stage = ce_stage(ce);
		if (!stage || strcmp(path, ce->name))
			break;
		hashcpy(threeway[stage - 1], ce->sha1);
		if (stage == 2)
			mode = create_ce_mode(ce->ce_mode);
		pos++;
		ce = active_cache[pos];
	}
	if (is_null_sha1(threeway[1]) || is_null_sha1(threeway[2]))
		return error(_("path '%s' does not have necessary versions"), path);
180

181 182 183
	read_mmblob(&ancestor, threeway[0]);
	read_mmblob(&ours, threeway[1]);
	read_mmblob(&theirs, threeway[2]);
184

185 186 187 188
	/*
	 * NEEDSWORK: re-create conflicts from merges with
	 * merge.renormalize set, too
	 */
189
	status = ll_merge(&result_buf, path, &ancestor, "base",
190
			  &ours, "ours", &theirs, "theirs", NULL);
191 192 193 194 195
	free(ancestor.ptr);
	free(ours.ptr);
	free(theirs.ptr);
	if (status < 0 || !result_buf.ptr) {
		free(result_buf.ptr);
196
		return error(_("path '%s': cannot merge"), path);
197 198 199 200 201
	}

	/*
	 * NEEDSWORK:
	 * There is absolutely no reason to write this as a blob object
M
Mike Ralphson 已提交
202
	 * and create a phony cache entry just to leak.  This hack is
203 204 205 206 207 208 209 210 211 212
	 * primarily to get to the write_entry() machinery that massages
	 * the contents to work-tree format and writes out which only
	 * allows it for a cache entry.  The code in write_entry() needs
	 * to be refactored to allow us to feed a <buffer, size, mode>
	 * instead of a cache entry.  Such a refactoring would help
	 * merge_recursive as well (it also writes the merge result to the
	 * object database even when it may contain conflicts).
	 */
	if (write_sha1_file(result_buf.ptr, result_buf.size,
			    blob_type, sha1))
213
		die(_("Unable to add merge result for '%s'"), path);
214
	ce = make_cache_entry(mode, sha1, path, 2, 0);
215
	if (!ce)
216
		die(_("make_cache_entry failed for path '%s'"), path);
217 218 219
	status = checkout_entry(ce, state, NULL);
	return status;
}
220

221 222
static int checkout_paths(const struct checkout_opts *opts,
			  const char *revision)
D
Daniel Barkalow 已提交
223 224 225 226 227 228 229
{
	int pos;
	struct checkout state;
	static char *ps_matched;
	unsigned char rev[20];
	int flag;
	struct commit *head;
230
	int errs = 0;
231
	int stage = opts->writeout_stage;
232
	int merge = opts->merge;
233
	int newfd;
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
	struct lock_file *lock_file;

	if (opts->track != BRANCH_TRACK_UNSPECIFIED)
		die(_("'%s' cannot be used with updating paths"), "--track");

	if (opts->new_branch_log)
		die(_("'%s' cannot be used with updating paths"), "-l");

	if (opts->force && opts->patch_mode)
		die(_("'%s' cannot be used with updating paths"), "-f");

	if (opts->force_detach)
		die(_("'%s' cannot be used with updating paths"), "--detach");

	if (opts->merge && opts->patch_mode)
		die(_("'%s' cannot be used with %s"), "--merge", "--patch");

	if (opts->force && opts->merge)
		die(_("'%s' cannot be used with %s"), "-f", "-m");

	if (opts->new_branch)
		die(_("Cannot update paths and switch to branch '%s' at the same time."),
		    opts->new_branch);

	if (opts->patch_mode)
		return run_add_interactive(revision, "--patch=checkout",
					   opts->pathspec);

	lock_file = xcalloc(1, sizeof(struct lock_file));
263 264

	newfd = hold_locked_index(lock_file, 1);
265
	if (read_cache_preload(opts->pathspec) < 0)
266
		return error(_("corrupt index file"));
267

268 269
	if (opts->source_tree)
		read_tree_some(opts->source_tree, opts->pathspec);
270

271
	for (pos = 0; opts->pathspec[pos]; pos++)
D
Daniel Barkalow 已提交
272 273 274
		;
	ps_matched = xcalloc(1, pos);

275 276 277 278
	/*
	 * Make sure all pathspecs participated in locating the paths
	 * to be checked out.
	 */
D
Daniel Barkalow 已提交
279 280
	for (pos = 0; pos < active_nr; pos++) {
		struct cache_entry *ce = active_cache[pos];
281
		ce->ce_flags &= ~CE_MATCHED;
282 283
		if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
			continue;
284
		if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
285 286 287 288 289 290 291
			/*
			 * "git checkout tree-ish -- path", but this entry
			 * is in the original index; it will not be checked
			 * out to the working tree and it does not matter
			 * if pathspec matched this entry.  We will not do
			 * anything to this entry at all.
			 */
292
			continue;
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309
		/*
		 * Either this entry came from the tree-ish we are
		 * checking the paths out of, or we are checking out
		 * of the index.
		 *
		 * If it comes from the tree-ish, we already know it
		 * matches the pathspec and could just stamp
		 * CE_MATCHED to it from update_some(). But we still
		 * need ps_matched and read_tree_recursive (and
		 * eventually tree_entry_interesting) cannot fill
		 * ps_matched yet. Once it can, we can avoid calling
		 * match_pathspec() for _all_ entries when
		 * opts->source_tree != NULL.
		 */
		if (match_pathspec(opts->pathspec, ce->name, ce_namelen(ce),
				   0, ps_matched))
			ce->ce_flags |= CE_MATCHED;
D
Daniel Barkalow 已提交
310 311
	}

312 313
	if (report_path_error(ps_matched, opts->pathspec, opts->prefix)) {
		free(ps_matched);
D
Daniel Barkalow 已提交
314
		return 1;
315 316
	}
	free(ps_matched);
D
Daniel Barkalow 已提交
317

318 319
	/* "checkout -m path" to recreate conflicted state */
	if (opts->merge)
320
		unmerge_marked_index(&the_index);
321

322 323 324
	/* Any unmerged paths? */
	for (pos = 0; pos < active_nr; pos++) {
		struct cache_entry *ce = active_cache[pos];
325
		if (ce->ce_flags & CE_MATCHED) {
326 327
			if (!ce_stage(ce))
				continue;
328
			if (opts->force) {
329
				warning(_("path '%s' is unmerged"), ce->name);
330 331
			} else if (stage) {
				errs |= check_stage(stage, ce, pos);
332
			} else if (opts->merge) {
333
				errs |= check_stages((1<<2) | (1<<3), ce, pos);
334 335
			} else {
				errs = 1;
336
				error(_("path '%s' is unmerged"), ce->name);
337
			}
338 339 340 341 342 343
			pos = skip_same_name(ce, pos) - 1;
		}
	}
	if (errs)
		return 1;

344
	/* Now we are committed to check them out */
D
Daniel Barkalow 已提交
345 346 347 348 349
	memset(&state, 0, sizeof(state));
	state.force = 1;
	state.refresh_cache = 1;
	for (pos = 0; pos < active_nr; pos++) {
		struct cache_entry *ce = active_cache[pos];
350
		if (ce->ce_flags & CE_MATCHED) {
351 352 353 354
			if (!ce_stage(ce)) {
				errs |= checkout_entry(ce, &state, NULL);
				continue;
			}
355 356
			if (stage)
				errs |= checkout_stage(stage, ce, pos, &state);
357 358
			else if (merge)
				errs |= checkout_merged(pos, &state);
359
			pos = skip_same_name(ce, pos) - 1;
D
Daniel Barkalow 已提交
360 361 362
		}
	}

363 364
	if (write_cache(newfd, active_cache, active_nr) ||
	    commit_locked_index(lock_file))
365
		die(_("unable to write new index file"));
366

367
	read_ref_full("HEAD", rev, 0, &flag);
D
Daniel Barkalow 已提交
368 369
	head = lookup_commit_reference_gently(rev, 1);

370 371
	errs |= post_checkout_hook(head, head, 0);
	return errs;
D
Daniel Barkalow 已提交
372 373
}

374 375
static void show_local_changes(struct object *head,
			       const struct diff_options *opts)
D
Daniel Barkalow 已提交
376 377 378 379
{
	struct rev_info rev;
	/* I think we want full paths, even if we're in a subdirectory. */
	init_revisions(&rev, NULL);
380
	rev.diffopt.flags = opts->flags;
D
Daniel Barkalow 已提交
381
	rev.diffopt.output_format |= DIFF_FORMAT_NAME_STATUS;
T
Thomas Rast 已提交
382
	diff_setup_done(&rev.diffopt);
D
Daniel Barkalow 已提交
383 384 385 386
	add_pending_object(&rev, head, NULL);
	run_diff_index(&rev, 0);
}

387
static void describe_detached_head(const char *msg, struct commit *commit)
D
Daniel Barkalow 已提交
388
{
389
	struct strbuf sb = STRBUF_INIT;
D
Daniel Barkalow 已提交
390
	parse_commit(commit);
391
	pp_commit_easy(CMIT_FMT_ONELINE, commit, &sb);
D
Daniel Barkalow 已提交
392 393 394 395 396
	fprintf(stderr, "%s %s... %s\n", msg,
		find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV), sb.buf);
	strbuf_release(&sb);
}

397 398
static int reset_tree(struct tree *tree, const struct checkout_opts *o,
		      int worktree, int *writeout_error)
D
Daniel Barkalow 已提交
399 400 401
{
	struct unpack_trees_options opts;
	struct tree_desc tree_desc;
402

D
Daniel Barkalow 已提交
403 404
	memset(&opts, 0, sizeof(opts));
	opts.head_idx = -1;
405 406
	opts.update = worktree;
	opts.skip_unmerged = !worktree;
D
Daniel Barkalow 已提交
407 408 409
	opts.reset = 1;
	opts.merge = 1;
	opts.fn = oneway_merge;
410
	opts.verbose_update = !o->quiet && isatty(2);
411 412
	opts.src_index = &the_index;
	opts.dst_index = &the_index;
D
Daniel Barkalow 已提交
413 414
	parse_tree(tree);
	init_tree_desc(&tree_desc, tree->buffer, tree->size);
415 416
	switch (unpack_trees(1, &tree_desc, &opts)) {
	case -2:
417
		*writeout_error = 1;
418 419 420 421 422 423 424 425 426
		/*
		 * We return 0 nevertheless, as the index is all right
		 * and more importantly we have made best efforts to
		 * update paths in the work tree, and we cannot revert
		 * them.
		 */
	case 0:
		return 0;
	default:
427
		return 128;
428
	}
D
Daniel Barkalow 已提交
429 430 431 432 433 434 435 436 437 438
}

struct branch_info {
	const char *name; /* The short name used */
	const char *path; /* The full name of a real branch */
	struct commit *commit; /* The named commit */
};

static void setup_branch_path(struct branch_info *branch)
{
439
	struct strbuf buf = STRBUF_INIT;
440

441 442
	strbuf_branchname(&buf, branch->name);
	if (strcmp(buf.buf, branch->name))
443
		branch->name = xstrdup(buf.buf);
444
	strbuf_splice(&buf, 0, 0, "refs/heads/", 11);
D
Daniel Barkalow 已提交
445 446 447
	branch->path = strbuf_detach(&buf, NULL);
}

448 449 450 451
static int merge_working_tree(const struct checkout_opts *opts,
			      struct branch_info *old,
			      struct branch_info *new,
			      int *writeout_error)
D
Daniel Barkalow 已提交
452 453 454 455
{
	int ret;
	struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
	int newfd = hold_locked_index(lock_file, 1);
456

457
	if (read_cache_preload(NULL) < 0)
458
		return error(_("corrupt index file"));
D
Daniel Barkalow 已提交
459

460
	resolve_undo_clear();
D
Daniel Barkalow 已提交
461
	if (opts->force) {
462
		ret = reset_tree(new->commit->tree, opts, 1, writeout_error);
D
Daniel Barkalow 已提交
463 464 465 466 467 468
		if (ret)
			return ret;
	} else {
		struct tree_desc trees[2];
		struct tree *tree;
		struct unpack_trees_options topts;
469

D
Daniel Barkalow 已提交
470 471
		memset(&topts, 0, sizeof(topts));
		topts.head_idx = -1;
472 473
		topts.src_index = &the_index;
		topts.dst_index = &the_index;
D
Daniel Barkalow 已提交
474

475
		setup_unpack_trees_porcelain(&topts, "checkout");
476

D
Daniel Barkalow 已提交
477 478 479
		refresh_cache(REFRESH_QUIET);

		if (unmerged_cache()) {
480
			error(_("you need to resolve your current index first"));
481
			return 1;
D
Daniel Barkalow 已提交
482
		}
483 484

		/* 2-way merge to the new branch */
485
		topts.initial_checkout = is_cache_unborn();
486 487
		topts.update = 1;
		topts.merge = 1;
488
		topts.gently = opts->merge && old->commit;
489
		topts.verbose_update = !opts->quiet && isatty(2);
490
		topts.fn = twoway_merge;
491 492 493 494 495
		if (opts->overwrite_ignore) {
			topts.dir = xcalloc(1, sizeof(*topts.dir));
			topts.dir->flags |= DIR_SHOW_IGNORED;
			setup_standard_excludes(topts.dir);
		}
496 497
		tree = parse_tree_indirect(old->commit ?
					   old->commit->object.sha1 :
498
					   EMPTY_TREE_SHA1_BIN);
499 500 501 502
		init_tree_desc(&trees[0], tree->buffer, tree->size);
		tree = parse_tree_indirect(new->commit->object.sha1);
		init_tree_desc(&trees[1], tree->buffer, tree->size);

503
		ret = unpack_trees(2, trees, &topts);
504
		if (ret == -1) {
D
Daniel Barkalow 已提交
505 506 507 508 509 510 511
			/*
			 * Unpack couldn't do a trivial merge; either
			 * give up or do a real merge, depending on
			 * whether the merge flag was used.
			 */
			struct tree *result;
			struct tree *work;
512
			struct merge_options o;
D
Daniel Barkalow 已提交
513 514
			if (!opts->merge)
				return 1;
515 516 517 518 519 520 521

			/*
			 * Without old->commit, the below is the same as
			 * the two-tree unpack we already tried and failed.
			 */
			if (!old->commit)
				return 1;
D
Daniel Barkalow 已提交
522 523 524 525 526 527 528 529 530 531 532 533 534 535

			/* Do more real merge */

			/*
			 * We update the index fully, then write the
			 * tree from the index, then merge the new
			 * branch with the current tree, with the old
			 * branch as the base. Then we reset the index
			 * (but not the working tree) to the new
			 * branch, leaving the working tree as the
			 * merged version, but skipping unmerged
			 * entries in the index.
			 */

536
			add_files_to_cache(NULL, NULL, 0);
J
Jonathan Nieder 已提交
537 538 539 540 541 542 543
			/*
			 * NEEDSWORK: carrying over local changes
			 * when branches have different end-of-line
			 * normalization (or clean+smudge rules) is
			 * a pain; plumb in an option to set
			 * o.renormalize?
			 */
544 545 546
			init_merge_options(&o);
			o.verbosity = 0;
			work = write_tree_from_memory(&o);
D
Daniel Barkalow 已提交
547

548 549
			ret = reset_tree(new->commit->tree, opts, 1,
					 writeout_error);
D
Daniel Barkalow 已提交
550 551
			if (ret)
				return ret;
552
			o.ancestor = old->name;
553 554 555 556
			o.branch1 = new->name;
			o.branch2 = "local";
			merge_trees(&o, new->commit->tree, work,
				old->commit->tree, &result);
557 558
			ret = reset_tree(new->commit->tree, opts, 0,
					 writeout_error);
559 560
			if (ret)
				return ret;
D
Daniel Barkalow 已提交
561 562 563 564 565
		}
	}

	if (write_cache(newfd, active_cache, active_nr) ||
	    commit_locked_index(lock_file))
566
		die(_("unable to write new index file"));
D
Daniel Barkalow 已提交
567

568
	if (!opts->force && !opts->quiet)
569
		show_local_changes(&new->commit->object, &opts->diff_options);
D
Daniel Barkalow 已提交
570 571 572 573

	return 0;
}

574
static void report_tracking(struct branch_info *new)
575
{
576
	struct strbuf sb = STRBUF_INIT;
577
	struct branch *branch = branch_get(new->name);
578

579
	if (!format_tracking_info(branch, &sb))
580
		return;
581 582
	fputs(sb.buf, stdout);
	strbuf_release(&sb);
583
}
584

585
static void update_refs_for_switch(const struct checkout_opts *opts,
D
Daniel Barkalow 已提交
586 587 588
				   struct branch_info *old,
				   struct branch_info *new)
{
589
	struct strbuf msg = STRBUF_INIT;
D
Daniel Barkalow 已提交
590 591
	const char *old_desc;
	if (opts->new_branch) {
592 593 594
		if (opts->new_orphan_branch) {
			if (opts->new_branch_log && !log_all_ref_updates) {
				int temp;
595
				char log_file[PATH_MAX];
596 597 598 599
				char *ref_name = mkpath("refs/heads/%s", opts->new_orphan_branch);

				temp = log_all_ref_updates;
				log_all_ref_updates = 1;
600
				if (log_ref_setup(ref_name, log_file, sizeof(log_file))) {
601
					fprintf(stderr, _("Can not do reflog for '%s'\n"),
602 603 604 605 606 607 608 609
					    opts->new_orphan_branch);
					log_all_ref_updates = temp;
					return;
				}
				log_all_ref_updates = temp;
			}
		}
		else
T
Tay Ray Chuan 已提交
610 611
			create_branch(old->name, opts->new_branch, new->name,
				      opts->new_branch_force ? 1 : 0,
612 613
				      opts->new_branch_log,
				      opts->new_branch_force ? 1 : 0,
614
				      opts->quiet,
615
				      opts->track);
D
Daniel Barkalow 已提交
616 617 618 619 620
		new->name = opts->new_branch;
		setup_branch_path(new);
	}

	old_desc = old->name;
621
	if (!old_desc && old->commit)
D
Daniel Barkalow 已提交
622 623
		old_desc = sha1_to_hex(old->commit->object.sha1);
	strbuf_addf(&msg, "checkout: moving from %s to %s",
624
		    old_desc ? old_desc : "(invalid)", new->name);
D
Daniel Barkalow 已提交
625

626 627 628 629 630 631 632
	if (!strcmp(new->name, "HEAD") && !new->path && !opts->force_detach) {
		/* Nothing to do. */
	} else if (opts->force_detach || !new->path) {	/* No longer on any branch. */
		update_ref(msg.buf, "HEAD", new->commit->object.sha1, NULL,
			   REF_NODEREF, DIE_ON_ERR);
		if (!opts->quiet) {
			if (old->path && advice_detached_head)
633
				detach_advice(new->name);
J
Junio C Hamano 已提交
634
			describe_detached_head(_("HEAD is now at"), new->commit);
635 636
		}
	} else if (new->path) {	/* Switch branches. */
D
Daniel Barkalow 已提交
637 638
		create_symref("HEAD", new->path, msg.buf);
		if (!opts->quiet) {
639
			if (old->path && !strcmp(new->path, old->path)) {
640 641 642 643 644 645
				if (opts->new_branch_force)
					fprintf(stderr, _("Reset branch '%s'\n"),
						new->name);
				else
					fprintf(stderr, _("Already on '%s'\n"),
						new->name);
646 647 648 649 650 651
			} else if (opts->new_branch) {
				if (opts->branch_exists)
					fprintf(stderr, _("Switched to and reset branch '%s'\n"), new->name);
				else
					fprintf(stderr, _("Switched to a new branch '%s'\n"), new->name);
			} else {
652
				fprintf(stderr, _("Switched to branch '%s'\n"),
653
					new->name);
654
			}
D
Daniel Barkalow 已提交
655
		}
656 657 658 659 660 661 662 663
		if (old->path && old->name) {
			char log_file[PATH_MAX], ref_file[PATH_MAX];

			git_snpath(log_file, sizeof(log_file), "logs/%s", old->path);
			git_snpath(ref_file, sizeof(ref_file), "%s", old->path);
			if (!file_exists(ref_file) && file_exists(log_file))
				remove_path(log_file);
		}
D
Daniel Barkalow 已提交
664 665 666
	}
	remove_branch_state();
	strbuf_release(&msg);
667 668
	if (!opts->quiet &&
	    (new->path || (!opts->force_detach && !strcmp(new->name, "HEAD"))))
669
		report_tracking(new);
D
Daniel Barkalow 已提交
670 671
}

672 673 674
static int add_pending_uninteresting_ref(const char *refname,
					 const unsigned char *sha1,
					 int flags, void *cb_data)
675
{
676
	add_pending_sha1(cb_data, refname, sha1, UNINTERESTING);
677 678
	return 0;
}
679 680 681 682

static void describe_one_orphan(struct strbuf *sb, struct commit *commit)
{
	parse_commit(commit);
683 684 685 686
	strbuf_addstr(sb, "  ");
	strbuf_addstr(sb,
		find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
	strbuf_addch(sb, ' ');
687
	pp_commit_easy(CMIT_FMT_ONELINE, commit, sb);
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
	strbuf_addch(sb, '\n');
}

#define ORPHAN_CUTOFF 4
static void suggest_reattach(struct commit *commit, struct rev_info *revs)
{
	struct commit *c, *last = NULL;
	struct strbuf sb = STRBUF_INIT;
	int lost = 0;
	while ((c = get_revision(revs)) != NULL) {
		if (lost < ORPHAN_CUTOFF)
			describe_one_orphan(&sb, c);
		last = c;
		lost++;
	}
	if (ORPHAN_CUTOFF < lost) {
		int more = lost - ORPHAN_CUTOFF;
		if (more == 1)
			describe_one_orphan(&sb, last);
		else
708
			strbuf_addf(&sb, _(" ... and %d more.\n"), more);
709 710 711
	}

	fprintf(stderr,
712 713 714 715 716
		Q_(
		/* The singular version */
		"Warning: you are leaving %d commit behind, "
		"not connected to\n"
		"any of your branches:\n\n"
717
		"%s\n",
718 719
		/* The plural version */
		"Warning: you are leaving %d commits behind, "
720 721
		"not connected to\n"
		"any of your branches:\n\n"
722
		"%s\n",
723 724 725
		/* Give ngettext() the count */
		lost),
		lost,
726
		sb.buf);
727
	strbuf_release(&sb);
728 729 730

	if (advice_detached_head)
		fprintf(stderr,
731
			_(
732 733
			"If you want to keep them by creating a new branch, "
			"this may be a good time\nto do so with:\n\n"
734
			" git branch new_branch_name %s\n\n"),
735
			find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
736 737 738 739 740 741 742
}

/*
 * We are about to leave commit that was at the tip of a detached
 * HEAD.  If it is not reachable from any ref, this is the last chance
 * for the user to do so without resorting to reflog.
 */
743
static void orphaned_commit_warning(struct commit *old, struct commit *new)
744 745
{
	struct rev_info revs;
746
	struct object *object = &old->object;
R
René Scharfe 已提交
747
	struct object_array refs;
748 749

	init_revisions(&revs, NULL);
750 751 752 753 754 755
	setup_revisions(0, NULL, &revs, NULL);

	object->flags &= ~UNINTERESTING;
	add_pending_object(&revs, object, sha1_to_hex(object->sha1));

	for_each_ref(add_pending_uninteresting_ref, &revs);
756
	add_pending_sha1(&revs, "HEAD", new->object.sha1, UNINTERESTING);
757

R
René Scharfe 已提交
758 759 760
	refs = revs.pending;
	revs.leak_pending = 1;

761
	if (prepare_revision_walk(&revs))
J
Junio C Hamano 已提交
762
		die(_("internal error in revision walk"));
763 764
	if (!(old->object.flags & UNINTERESTING))
		suggest_reattach(old, &revs);
765
	else
766
		describe_detached_head(_("Previous HEAD position was"), old);
767

768
	clear_commit_marks_for_object_array(&refs, ALL_REV_FLAGS);
R
René Scharfe 已提交
769
	free(refs.objects);
770 771
}

772 773
static int switch_branches(const struct checkout_opts *opts,
			   struct branch_info *new)
D
Daniel Barkalow 已提交
774 775 776
{
	int ret = 0;
	struct branch_info old;
777
	void *path_to_free;
D
Daniel Barkalow 已提交
778
	unsigned char rev[20];
779
	int flag, writeout_error = 0;
D
Daniel Barkalow 已提交
780
	memset(&old, 0, sizeof(old));
781
	old.path = path_to_free = resolve_refdup("HEAD", rev, 0, &flag);
D
Daniel Barkalow 已提交
782
	old.commit = lookup_commit_reference_gently(rev, 1);
783
	if (!(flag & REF_ISSYMREF))
D
Daniel Barkalow 已提交
784 785 786 787 788 789 790 791 792
		old.path = NULL;

	if (old.path && !prefixcmp(old.path, "refs/heads/"))
		old.name = old.path + strlen("refs/heads/");

	if (!new->name) {
		new->name = "HEAD";
		new->commit = old.commit;
		if (!new->commit)
793
			die(_("You are on a branch yet to be born"));
D
Daniel Barkalow 已提交
794 795 796
		parse_commit(new->commit);
	}

797
	ret = merge_working_tree(opts, &old, new, &writeout_error);
798 799
	if (ret) {
		free(path_to_free);
D
Daniel Barkalow 已提交
800
		return ret;
801
	}
D
Daniel Barkalow 已提交
802

803
	if (!opts->quiet && !old.path && old.commit && new->commit != old.commit)
804
		orphaned_commit_warning(old.commit, new->commit);
805

D
Daniel Barkalow 已提交
806 807
	update_refs_for_switch(opts, &old, new);

808
	ret = post_checkout_hook(old.commit, new->commit, 1);
809
	free(path_to_free);
810
	return ret || writeout_error;
D
Daniel Barkalow 已提交
811 812
}

813 814
static int git_checkout_config(const char *var, const char *value, void *cb)
{
815 816 817 818 819
	if (!strcmp(var, "diff.ignoresubmodules")) {
		struct checkout_opts *opts = cb;
		handle_ignore_submodules_arg(&opts->diff_options, value);
		return 0;
	}
820 821 822 823

	if (!prefixcmp(var, "submodule."))
		return parse_submodule_config_option(var, value);

824
	return git_xmerge_config(var, value, NULL);
825 826
}

827
struct tracking_name_data {
828 829 830
	/* const */ char *src_ref;
	char *dst_ref;
	unsigned char *dst_sha1;
831 832 833
	int unique;
};

834
static int check_tracking_name(struct remote *remote, void *cb_data)
835 836
{
	struct tracking_name_data *cb = cb_data;
837 838 839 840
	struct refspec query;
	memset(&query, 0, sizeof(struct refspec));
	query.src = cb->src_ref;
	if (remote_find_tracking(remote, &query) ||
841 842
	    get_sha1(query.dst, cb->dst_sha1)) {
		free(query.dst);
843
		return 0;
844
	}
845
	if (cb->dst_ref) {
846
		free(query.dst);
847 848 849
		cb->unique = 0;
		return 0;
	}
850
	cb->dst_ref = query.dst;
851 852 853
	return 0;
}

854
static const char *unique_tracking_name(const char *name, unsigned char *sha1)
855
{
856 857 858 859 860 861
	struct tracking_name_data cb_data = { NULL, NULL, NULL, 1 };
	char src_ref[PATH_MAX];
	snprintf(src_ref, PATH_MAX, "refs/heads/%s", name);
	cb_data.src_ref = src_ref;
	cb_data.dst_sha1 = sha1;
	for_each_remote(check_tracking_name, &cb_data);
862
	if (cb_data.unique)
863 864
		return cb_data.dst_ref;
	free(cb_data.dst_ref);
865 866
	return NULL;
}
T
Thomas Rast 已提交
867

868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
static int parse_branchname_arg(int argc, const char **argv,
				int dwim_new_local_branch_ok,
				struct branch_info *new,
				struct tree **source_tree,
				unsigned char rev[20],
				const char **new_branch)
{
	int argcount = 0;
	unsigned char branch_rev[20];
	const char *arg;
	int has_dash_dash;

	/*
	 * case 1: git checkout <ref> -- [<paths>]
	 *
	 *   <ref> must be a valid tree, everything after the '--' must be
	 *   a path.
	 *
	 * case 2: git checkout -- [<paths>]
	 *
	 *   everything after the '--' must be paths.
	 *
	 * case 3: git checkout <something> [<paths>]
	 *
	 *   With no paths, if <something> is a commit, that is to
	 *   switch to the branch or detach HEAD at it.  As a special case,
	 *   if <something> is A...B (missing A or B means HEAD but you can
	 *   omit at most one side), and if there is a unique merge base
	 *   between A and B, A...B names that merge base.
	 *
	 *   With no paths, if <something> is _not_ a commit, no -t nor -b
	 *   was given, and there is a tracking branch whose name is
	 *   <something> in one and only one remote, then this is a short-hand
901
	 *   to fork local <something> from that remote-tracking branch.
902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922
	 *
	 *   Otherwise <something> shall not be ambiguous.
	 *   - If it's *only* a reference, treat it like case (1).
	 *   - If it's only a path, treat it like case (2).
	 *   - else: fail.
	 *
	 */
	if (!argc)
		return 0;

	if (!strcmp(argv[0], "--"))	/* case (2) */
		return 1;

	arg = argv[0];
	has_dash_dash = (argc > 1) && !strcmp(argv[1], "--");

	if (!strcmp(arg, "-"))
		arg = "@{-1}";

	if (get_sha1_mb(arg, rev)) {
		if (has_dash_dash)          /* case (1) */
J
Junio C Hamano 已提交
923
			die(_("invalid reference: %s"), arg);
924 925 926
		if (dwim_new_local_branch_ok &&
		    !check_filename(NULL, arg) &&
		    argc == 1) {
927 928
			const char *remote = unique_tracking_name(arg, rev);
			if (!remote)
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
				return argcount;
			*new_branch = arg;
			arg = remote;
			/* DWIMmed to create local branch */
		} else {
			return argcount;
		}
	}

	/* we can't end up being in (2) anymore, eat the argument */
	argcount++;
	argv++;
	argc--;

	new->name = arg;
	setup_branch_path(new);

946
	if (!check_refname_format(new->path, 0) &&
947
	    !read_ref(new->path, branch_rev))
948 949 950 951 952 953 954 955 956 957 958 959 960 961
		hashcpy(rev, branch_rev);
	else
		new->path = NULL; /* not an existing branch */

	new->commit = lookup_commit_reference_gently(rev, 1);
	if (!new->commit) {
		/* not a commit */
		*source_tree = parse_tree_indirect(rev);
	} else {
		parse_commit(new->commit);
		*source_tree = new->commit->tree;
	}

	if (!*source_tree)                   /* case (1): want a tree */
J
Junio C Hamano 已提交
962
		die(_("reference is not a tree: %s"), arg);
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
	if (!has_dash_dash) {/* case (3 -> 1) */
		/*
		 * Do not complain the most common case
		 *	git checkout branch
		 * even if there happen to be a file called 'branch';
		 * it would be extremely annoying.
		 */
		if (argc)
			verify_non_filename(NULL, arg);
	} else {
		argcount++;
		argv++;
		argc--;
	}

	return argcount;
}

981
static int switch_unborn_to_new_branch(const struct checkout_opts *opts)
982 983 984 985
{
	int status;
	struct strbuf branch_ref = STRBUF_INIT;

986 987
	if (!opts->new_branch)
		die(_("You are on a branch yet to be born"));
988 989 990
	strbuf_addf(&branch_ref, "refs/heads/%s", opts->new_branch);
	status = create_symref("HEAD", branch_ref.buf, "checkout -b");
	strbuf_release(&branch_ref);
991 992 993
	if (!opts->quiet)
		fprintf(stderr, _("Switched to a new branch '%s'\n"),
			opts->new_branch);
994 995 996
	return status;
}

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
static int checkout_branch(struct checkout_opts *opts,
			   struct branch_info *new)
{
	if (opts->pathspec)
		die(_("paths cannot be used with switching branches"));

	if (opts->patch_mode)
		die(_("'%s' cannot be used with switching branches"),
		    "--patch");

	if (opts->writeout_stage)
		die(_("'%s' cannot be used with switching branches"),
		    "--ours/--theirs");

	if (opts->force && opts->merge)
		die(_("'%s' cannot be used with '%s'"), "-f", "-m");

	if (opts->force_detach && opts->new_branch)
		die(_("'%s' cannot be used with '%s'"),
		    "--detach", "-b/-B/--orphan");

	if (opts->new_orphan_branch) {
		if (opts->track != BRANCH_TRACK_UNSPECIFIED)
			die(_("'%s' cannot be used with '%s'"), "--orphan", "-t");
	} else if (opts->force_detach) {
		if (opts->track != BRANCH_TRACK_UNSPECIFIED)
			die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
	} else if (opts->track == BRANCH_TRACK_UNSPECIFIED)
		opts->track = git_branch_track;

	if (new->name && !new->commit)
		die(_("Cannot switch branch to a non-commit '%s'"),
		    new->name);

	if (!new->commit && opts->new_branch) {
		unsigned char rev[20];
		int flag;

		if (!read_ref_full("HEAD", rev, 0, &flag) &&
		    (flag & REF_ISSYMREF) && is_null_sha1(rev))
			return switch_unborn_to_new_branch(opts);
	}
	return switch_branches(opts, new);
}

D
Daniel Barkalow 已提交
1042 1043 1044 1045
int cmd_checkout(int argc, const char **argv, const char *prefix)
{
	struct checkout_opts opts;
	struct branch_info new;
1046
	char *conflict_style = NULL;
J
Junio C Hamano 已提交
1047
	int dwim_new_local_branch = 1;
D
Daniel Barkalow 已提交
1048
	struct option options[] = {
1049 1050 1051 1052 1053 1054 1055 1056
		OPT__QUIET(&opts.quiet, N_("suppress progress reporting")),
		OPT_STRING('b', NULL, &opts.new_branch, N_("branch"),
			   N_("create and checkout a new branch")),
		OPT_STRING('B', NULL, &opts.new_branch_force, N_("branch"),
			   N_("create/reset and checkout a branch")),
		OPT_BOOLEAN('l', NULL, &opts.new_branch_log, N_("create reflog for new branch")),
		OPT_BOOLEAN(0, "detach", &opts.force_detach, N_("detach the HEAD at named commit")),
		OPT_SET_INT('t', "track",  &opts.track, N_("set upstream info for new branch"),
1057
			BRANCH_TRACK_EXPLICIT),
1058 1059
		OPT_STRING(0, "orphan", &opts.new_orphan_branch, N_("new branch"), N_("new unparented branch")),
		OPT_SET_INT('2', "ours", &opts.writeout_stage, N_("checkout our version for unmerged files"),
1060
			    2),
1061
		OPT_SET_INT('3', "theirs", &opts.writeout_stage, N_("checkout their version for unmerged files"),
1062
			    3),
1063 1064 1065 1066 1067
		OPT__FORCE(&opts.force, N_("force checkout (throw away local modifications)")),
		OPT_BOOLEAN('m', "merge", &opts.merge, N_("perform a 3-way merge with the new branch")),
		OPT_BOOLEAN(0, "overwrite-ignore", &opts.overwrite_ignore, N_("update ignored files (default)")),
		OPT_STRING(0, "conflict", &conflict_style, N_("style"),
			   N_("conflict style (merge or diff3)")),
1068
		OPT_BOOLEAN('p', "patch", &opts.patch_mode, N_("select hunks interactively")),
1069 1070
		OPT_BOOL(0, "ignore-skip-worktree-bits", &opts.ignore_skipworktree,
			 N_("do not limit pathspecs to sparse entries only")),
J
Junio C Hamano 已提交
1071
		{ OPTION_BOOLEAN, 0, "guess", &dwim_new_local_branch, NULL,
1072
		  N_("second guess 'git checkout no-such-branch'"),
J
Junio C Hamano 已提交
1073
		  PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
1074
		OPT_END(),
D
Daniel Barkalow 已提交
1075 1076 1077 1078
	};

	memset(&opts, 0, sizeof(opts));
	memset(&new, 0, sizeof(new));
1079
	opts.overwrite_ignore = 1;
1080
	opts.prefix = prefix;
D
Daniel Barkalow 已提交
1081

1082
	gitmodules_config();
1083
	git_config(git_checkout_config, &opts);
D
Daniel Barkalow 已提交
1084

1085
	opts.track = BRANCH_TRACK_UNSPECIFIED;
D
Daniel Barkalow 已提交
1086

1087
	argc = parse_options(argc, argv, prefix, options, checkout_usage,
1088
			     PARSE_OPT_KEEP_DASHDASH);
1089

1090 1091 1092 1093
	if (conflict_style) {
		opts.merge = 1; /* implied */
		git_xmerge_config("merge.conflictstyle", conflict_style, NULL);
	}
T
Tay Ray Chuan 已提交
1094

1095 1096
	if ((!!opts.new_branch + !!opts.new_branch_force + !!opts.new_orphan_branch) > 1)
		die(_("-b, -B and --orphan are mutually exclusive"));
T
Tay Ray Chuan 已提交
1097

1098 1099 1100 1101 1102
	/*
	 * From here on, new_branch will contain the branch to be checked out,
	 * and new_branch_force and new_orphan_branch will tell us which one of
	 * -b/-B/--orphan is being used.
	 */
T
Tay Ray Chuan 已提交
1103 1104 1105
	if (opts.new_branch_force)
		opts.new_branch = opts.new_branch_force;

1106 1107
	if (opts.new_orphan_branch)
		opts.new_branch = opts.new_orphan_branch;
1108

1109 1110
	/* --track without -b/-B/--orphan should DWIM */
	if (opts.track != BRANCH_TRACK_UNSPECIFIED && !opts.new_branch) {
1111 1112
		const char *argv0 = argv[0];
		if (!argc || !strcmp(argv0, "--"))
1113
			die (_("--track needs a branch name"));
1114 1115 1116 1117 1118 1119
		if (!prefixcmp(argv0, "refs/"))
			argv0 += 5;
		if (!prefixcmp(argv0, "remotes/"))
			argv0 += 8;
		argv0 = strchr(argv0, '/');
		if (!argv0 || !argv0[1])
1120
			die (_("Missing branch name; try -b"));
1121
		opts.new_branch = argv0 + 1;
1122 1123
	}

1124
	/*
1125 1126
	 * Extract branch name from command line arguments, so
	 * all that is left is pathspecs.
1127
	 *
1128
	 * Handle
1129
	 *
1130 1131 1132
	 *  1) git checkout <tree> -- [<paths>]
	 *  2) git checkout -- [<paths>]
	 *  3) git checkout <something> [<paths>]
1133
	 *
1134 1135
	 * including "last branch" syntax and DWIM-ery for names of
	 * remote branches, erroring out for invalid or ambiguous cases.
1136
	 */
D
Daniel Barkalow 已提交
1137
	if (argc) {
1138
		unsigned char rev[20];
1139
		int dwim_ok =
1140
			!opts.patch_mode &&
1141 1142 1143
			dwim_new_local_branch &&
			opts.track == BRANCH_TRACK_UNSPECIFIED &&
			!opts.new_branch;
1144
		int n = parse_branchname_arg(argc, argv, dwim_ok,
1145 1146
					     &new, &opts.source_tree,
					     rev, &opts.new_branch);
1147 1148
		argv += n;
		argc -= n;
D
Daniel Barkalow 已提交
1149 1150 1151
	}

	if (argc) {
1152
		opts.pathspec = get_pathspec(prefix, argv);
1153

1154
		if (!opts.pathspec)
1155
			die(_("invalid path specification"));
1156

1157 1158 1159 1160 1161 1162 1163 1164
		/*
		 * Try to give more helpful suggestion.
		 * new_branch && argc > 1 will be caught later.
		 */
		if (opts.new_branch && argc == 1)
			die(_("Cannot update paths and switch to branch '%s' at the same time.\n"
			      "Did you intend to checkout '%s' which can not be resolved as commit?"),
			    opts.new_branch, argv[0]);
D
Daniel Barkalow 已提交
1165

1166
		if (opts.force_detach)
1167 1168
			die(_("git checkout: --detach does not take a path argument '%s'"),
			    argv[0]);
1169

1170
		if (1 < !!opts.writeout_stage + !!opts.force + !!opts.merge)
1171 1172
			die(_("git checkout: --ours/--theirs, --force and --merge are incompatible when\n"
			      "checking out of the index."));
D
Daniel Barkalow 已提交
1173 1174
	}

1175
	if (opts.new_branch) {
1176
		struct strbuf buf = STRBUF_INIT;
1177

1178 1179 1180 1181
		opts.branch_exists =
			validate_new_branchname(opts.new_branch, &buf,
						!!opts.new_branch_force,
						!!opts.new_branch_force);
1182

1183 1184 1185
		strbuf_release(&buf);
	}

1186 1187 1188 1189
	if (opts.patch_mode || opts.pathspec)
		return checkout_paths(&opts, new.name);
	else
		return checkout_branch(&opts, &new);
D
Daniel Barkalow 已提交
1190
}