checkout.c 33.3 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

	int branch_exists;
	const char *prefix;
49
	struct pathspec pathspec;
50
	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
	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",
260
					   &opts->pathspec);
261 262

	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
	if (opts->source_tree)
269
		read_tree_some(opts->source_tree, opts->pathspec.raw);
270

271
	ps_matched = xcalloc(1, opts->pathspec.nr);
D
Daniel Barkalow 已提交
272

273 274 275 276
	/*
	 * Make sure all pathspecs participated in locating the paths
	 * to be checked out.
	 */
D
Daniel Barkalow 已提交
277 278
	for (pos = 0; pos < active_nr; pos++) {
		struct cache_entry *ce = active_cache[pos];
279
		ce->ce_flags &= ~CE_MATCHED;
280 281
		if (!opts->ignore_skipworktree && ce_skip_worktree(ce))
			continue;
282
		if (opts->source_tree && !(ce->ce_flags & CE_UPDATE))
283 284 285 286 287 288 289
			/*
			 * "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.
			 */
290
			continue;
291 292 293 294 295 296 297 298 299 300 301 302 303 304
		/*
		 * 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.
		 */
305
		if (match_pathspec_depth(&opts->pathspec, ce->name, ce_namelen(ce),
306 307
				   0, ps_matched))
			ce->ce_flags |= CE_MATCHED;
D
Daniel Barkalow 已提交
308 309
	}

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

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

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

342
	/* Now we are committed to check them out */
D
Daniel Barkalow 已提交
343 344 345 346 347
	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];
348
		if (ce->ce_flags & CE_MATCHED) {
349 350 351 352
			if (!ce_stage(ce)) {
				errs |= checkout_entry(ce, &state, NULL);
				continue;
			}
353 354
			if (stage)
				errs |= checkout_stage(stage, ce, pos, &state);
355 356
			else if (merge)
				errs |= checkout_merged(pos, &state);
357
			pos = skip_same_name(ce, pos) - 1;
D
Daniel Barkalow 已提交
358 359 360
		}
	}

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

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

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

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

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

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

D
Daniel Barkalow 已提交
401 402
	memset(&opts, 0, sizeof(opts));
	opts.head_idx = -1;
403 404
	opts.update = worktree;
	opts.skip_unmerged = !worktree;
D
Daniel Barkalow 已提交
405 406 407
	opts.reset = 1;
	opts.merge = 1;
	opts.fn = oneway_merge;
408
	opts.verbose_update = !o->quiet && isatty(2);
409 410
	opts.src_index = &the_index;
	opts.dst_index = &the_index;
D
Daniel Barkalow 已提交
411 412
	parse_tree(tree);
	init_tree_desc(&tree_desc, tree->buffer, tree->size);
413 414
	switch (unpack_trees(1, &tree_desc, &opts)) {
	case -2:
415
		*writeout_error = 1;
416 417 418 419 420 421 422 423 424
		/*
		 * 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:
425
		return 128;
426
	}
D
Daniel Barkalow 已提交
427 428 429 430 431 432 433 434 435 436
}

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)
{
437
	struct strbuf buf = STRBUF_INIT;
438

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

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

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

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

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

473
		setup_unpack_trees_porcelain(&topts, "checkout");
474

D
Daniel Barkalow 已提交
475 476 477
		refresh_cache(REFRESH_QUIET);

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

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

501
		ret = unpack_trees(2, trees, &topts);
502
		if (ret == -1) {
D
Daniel Barkalow 已提交
503 504 505 506 507 508 509
			/*
			 * 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;
510
			struct merge_options o;
D
Daniel Barkalow 已提交
511 512
			if (!opts->merge)
				return 1;
513 514 515 516 517 518 519

			/*
			 * 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 已提交
520 521 522 523 524 525 526 527 528 529 530 531 532 533

			/* 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.
			 */

534
			add_files_to_cache(NULL, NULL, 0);
J
Jonathan Nieder 已提交
535 536 537 538 539 540 541
			/*
			 * 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?
			 */
542 543 544
			init_merge_options(&o);
			o.verbosity = 0;
			work = write_tree_from_memory(&o);
D
Daniel Barkalow 已提交
545

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

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

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

	return 0;
}

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

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

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

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

	old_desc = old->name;
619
	if (!old_desc && old->commit)
D
Daniel Barkalow 已提交
620
		old_desc = sha1_to_hex(old->commit->object.sha1);
621 622 623 624 625 626 627

	reflog_msg = getenv("GIT_REFLOG_ACTION");
	if (!reflog_msg)
		strbuf_addf(&msg, "checkout: moving from %s to %s",
			old_desc ? old_desc : "(invalid)", new->name);
	else
		strbuf_insert(&msg, 0, reflog_msg, strlen(reflog_msg));
D
Daniel Barkalow 已提交
628

629 630 631 632 633 634 635
	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)
636
				detach_advice(new->name);
J
Junio C Hamano 已提交
637
			describe_detached_head(_("HEAD is now at"), new->commit);
638 639
		}
	} else if (new->path) {	/* Switch branches. */
D
Daniel Barkalow 已提交
640 641
		create_symref("HEAD", new->path, msg.buf);
		if (!opts->quiet) {
642
			if (old->path && !strcmp(new->path, old->path)) {
643 644 645 646 647 648
				if (opts->new_branch_force)
					fprintf(stderr, _("Reset branch '%s'\n"),
						new->name);
				else
					fprintf(stderr, _("Already on '%s'\n"),
						new->name);
649 650 651 652 653 654
			} 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 {
655
				fprintf(stderr, _("Switched to branch '%s'\n"),
656
					new->name);
657
			}
D
Daniel Barkalow 已提交
658
		}
659 660 661 662 663 664 665 666
		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 已提交
667 668 669
	}
	remove_branch_state();
	strbuf_release(&msg);
670 671
	if (!opts->quiet &&
	    (new->path || (!opts->force_detach && !strcmp(new->name, "HEAD"))))
672
		report_tracking(new);
D
Daniel Barkalow 已提交
673 674
}

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

static void describe_one_orphan(struct strbuf *sb, struct commit *commit)
{
	parse_commit(commit);
686 687 688 689
	strbuf_addstr(sb, "  ");
	strbuf_addstr(sb,
		find_unique_abbrev(commit->object.sha1, DEFAULT_ABBREV));
	strbuf_addch(sb, ' ');
690
	pp_commit_easy(CMIT_FMT_ONELINE, commit, sb);
691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710
	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
711
			strbuf_addf(&sb, _(" ... and %d more.\n"), more);
712 713 714
	}

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

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

/*
 * 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.
 */
746
static void orphaned_commit_warning(struct commit *old, struct commit *new)
747 748
{
	struct rev_info revs;
749
	struct object *object = &old->object;
R
René Scharfe 已提交
750
	struct object_array refs;
751 752

	init_revisions(&revs, NULL);
753 754 755 756 757 758
	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);
759
	add_pending_sha1(&revs, "HEAD", new->object.sha1, UNINTERESTING);
760

R
René Scharfe 已提交
761 762 763
	refs = revs.pending;
	revs.leak_pending = 1;

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

771
	clear_commit_marks_for_object_array(&refs, ALL_REV_FLAGS);
R
René Scharfe 已提交
772
	free(refs.objects);
773 774
}

775 776
static int switch_branches(const struct checkout_opts *opts,
			   struct branch_info *new)
D
Daniel Barkalow 已提交
777 778 779
{
	int ret = 0;
	struct branch_info old;
780
	void *path_to_free;
D
Daniel Barkalow 已提交
781
	unsigned char rev[20];
782
	int flag, writeout_error = 0;
D
Daniel Barkalow 已提交
783
	memset(&old, 0, sizeof(old));
784
	old.path = path_to_free = resolve_refdup("HEAD", rev, 0, &flag);
D
Daniel Barkalow 已提交
785
	old.commit = lookup_commit_reference_gently(rev, 1);
786
	if (!(flag & REF_ISSYMREF))
D
Daniel Barkalow 已提交
787 788 789 790 791 792 793 794 795
		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)
796
			die(_("You are on a branch yet to be born"));
D
Daniel Barkalow 已提交
797 798 799
		parse_commit(new->commit);
	}

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

806
	if (!opts->quiet && !old.path && old.commit && new->commit != old.commit)
807
		orphaned_commit_warning(old.commit, new->commit);
808

D
Daniel Barkalow 已提交
809 810
	update_refs_for_switch(opts, &old, new);

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

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

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

827
	return git_xmerge_config(var, value, NULL);
828 829
}

830
struct tracking_name_data {
831 832 833
	/* const */ char *src_ref;
	char *dst_ref;
	unsigned char *dst_sha1;
834 835 836
	int unique;
};

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

857
static const char *unique_tracking_name(const char *name, unsigned char *sha1)
858
{
859 860 861 862 863 864
	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);
865
	if (cb_data.unique)
866 867
		return cb_data.dst_ref;
	free(cb_data.dst_ref);
868 869
	return NULL;
}
T
Thomas Rast 已提交
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 901 902 903
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
904
	 *   to fork local <something> from that remote-tracking branch.
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925
	 *
	 *   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 已提交
926
			die(_("invalid reference: %s"), arg);
927 928 929
		if (dwim_new_local_branch_ok &&
		    !check_filename(NULL, arg) &&
		    argc == 1) {
930 931
			const char *remote = unique_tracking_name(arg, rev);
			if (!remote)
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
				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);

949
	if (!check_refname_format(new->path, 0) &&
950
	    !read_ref(new->path, branch_rev))
951 952 953 954 955 956 957 958 959 960 961 962 963 964
		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 已提交
965
		die(_("reference is not a tree: %s"), arg);
966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
	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;
}

984
static int switch_unborn_to_new_branch(const struct checkout_opts *opts)
985 986 987 988
{
	int status;
	struct strbuf branch_ref = STRBUF_INIT;

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

1000 1001 1002
static int checkout_branch(struct checkout_opts *opts,
			   struct branch_info *new)
{
1003
	if (opts->pathspec.nr)
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 1042 1043 1044
		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 已提交
1045 1046 1047 1048
int cmd_checkout(int argc, const char **argv, const char *prefix)
{
	struct checkout_opts opts;
	struct branch_info new;
1049
	char *conflict_style = NULL;
J
Junio C Hamano 已提交
1050
	int dwim_new_local_branch = 1;
D
Daniel Barkalow 已提交
1051
	struct option options[] = {
1052 1053 1054 1055 1056 1057 1058 1059
		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"),
1060
			BRANCH_TRACK_EXPLICIT),
1061 1062
		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"),
1063
			    2),
1064
		OPT_SET_INT('3', "theirs", &opts.writeout_stage, N_("checkout their version for unmerged files"),
1065
			    3),
1066 1067 1068 1069 1070
		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)")),
1071
		OPT_BOOLEAN('p', "patch", &opts.patch_mode, N_("select hunks interactively")),
1072 1073
		OPT_BOOL(0, "ignore-skip-worktree-bits", &opts.ignore_skipworktree,
			 N_("do not limit pathspecs to sparse entries only")),
J
Junio C Hamano 已提交
1074
		{ OPTION_BOOLEAN, 0, "guess", &dwim_new_local_branch, NULL,
1075
		  N_("second guess 'git checkout no-such-branch'"),
J
Junio C Hamano 已提交
1076
		  PARSE_OPT_NOARG | PARSE_OPT_HIDDEN },
1077
		OPT_END(),
D
Daniel Barkalow 已提交
1078 1079 1080 1081
	};

	memset(&opts, 0, sizeof(opts));
	memset(&new, 0, sizeof(new));
1082
	opts.overwrite_ignore = 1;
1083
	opts.prefix = prefix;
D
Daniel Barkalow 已提交
1084

1085
	gitmodules_config();
1086
	git_config(git_checkout_config, &opts);
D
Daniel Barkalow 已提交
1087

1088
	opts.track = BRANCH_TRACK_UNSPECIFIED;
D
Daniel Barkalow 已提交
1089

1090
	argc = parse_options(argc, argv, prefix, options, checkout_usage,
1091
			     PARSE_OPT_KEEP_DASHDASH);
1092

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

1098 1099
	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 已提交
1100

1101 1102 1103 1104 1105
	/*
	 * 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 已提交
1106 1107 1108
	if (opts.new_branch_force)
		opts.new_branch = opts.new_branch_force;

1109 1110
	if (opts.new_orphan_branch)
		opts.new_branch = opts.new_orphan_branch;
1111

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

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

	if (argc) {
1155 1156 1157 1158 1159 1160 1161
		/*
		 * In patch mode (opts.patch_mode != 0), we pass the
		 * pathspec to an external program, git-add--interactive.
		 * Do not accept any kind of magic that that program
		 * cannot handle. Magic mask is pretty safe to be
		 * lifted for new magic when opts.patch_mode == 0.
		 */
1162 1163 1164
		parse_pathspec(&opts.pathspec, 0,
			       opts.patch_mode ? PATHSPEC_PREFIX_ORIGIN : 0,
			       prefix, argv);
1165

1166
		if (!opts.pathspec.nr)
1167
			die(_("invalid path specification"));
1168

1169 1170 1171 1172 1173 1174 1175 1176
		/*
		 * 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 已提交
1177

1178
		if (opts.force_detach)
1179 1180
			die(_("git checkout: --detach does not take a path argument '%s'"),
			    argv[0]);
1181

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

1187
	if (opts.new_branch) {
1188
		struct strbuf buf = STRBUF_INIT;
1189

1190 1191 1192 1193
		opts.branch_exists =
			validate_new_branchname(opts.new_branch, &buf,
						!!opts.new_branch_force,
						!!opts.new_branch_force);
1194

1195 1196 1197
		strbuf_release(&buf);
	}

1198
	if (opts.patch_mode || opts.pathspec.nr)
1199 1200 1201
		return checkout_paths(&opts, new.name);
	else
		return checkout_branch(&opts, &new);
D
Daniel Barkalow 已提交
1202
}