Skip to content

Commit 83ae209

Browse files
committed
checkout branch: prime cache-tree fully
When switching to another branch, the earlier code relied on incremental invalidation of cache-tree entries to degrade it. While it is not wrong per-se, we know that the resulting index must fully match the branch we are switching to unless the -m (merge) option is used. We should simply fully re-prime the cache-tree using the new tree object in such a case. And for safety, invalidate the cache-tree as a whole in other cases. Signed-off-by: Junio C Hamano <[email protected]>
1 parent 456156d commit 83ae209

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

builtin-checkout.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,14 +368,17 @@ static int merge_working_tree(struct checkout_opts *opts,
368368
int ret;
369369
struct lock_file *lock_file = xcalloc(1, sizeof(struct lock_file));
370370
int newfd = hold_locked_index(lock_file, 1);
371+
int reprime_cache_tree = 0;
371372

372373
if (read_cache() < 0)
373374
return error("corrupt index file");
374375

376+
cache_tree_free(&active_cache_tree);
375377
if (opts->force) {
376378
ret = reset_tree(new->commit->tree, opts, 1);
377379
if (ret)
378380
return ret;
381+
reprime_cache_tree = 1;
379382
} else {
380383
struct tree_desc trees[2];
381384
struct tree *tree;
@@ -411,7 +414,9 @@ static int merge_working_tree(struct checkout_opts *opts,
411414
init_tree_desc(&trees[1], tree->buffer, tree->size);
412415

413416
ret = unpack_trees(2, trees, &topts);
414-
if (ret == -1) {
417+
if (ret != -1) {
418+
reprime_cache_tree = 1;
419+
} else {
415420
/*
416421
* Unpack couldn't do a trivial merge; either
417422
* give up or do a real merge, depending on
@@ -455,6 +460,8 @@ static int merge_working_tree(struct checkout_opts *opts,
455460
}
456461
}
457462

463+
if (reprime_cache_tree)
464+
prime_cache_tree(&active_cache_tree, new->commit->tree);
458465
if (write_cache(newfd, active_cache, active_nr) ||
459466
commit_locked_index(lock_file))
460467
die("unable to write new index file");

0 commit comments

Comments
 (0)