Commit b419fe2d8cd536e596a4e0ea2eac221fbc2f59a1

Carlos Martín Nieto 2011-08-02T14:38:49

Invalidate the path when removing from the index Signed-off-by: Carlos Martín Nieto <cmn@elego.de>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/src/index.c b/src/index.c
index 34f7d05..c7bf1a8 100644
--- a/src/index.c
+++ b/src/index.c
@@ -490,7 +490,13 @@ int git_index_append2(git_index *index, const git_index_entry *source_entry)
 
 int git_index_remove(git_index *index, int position)
 {
+	git_index_entry *entry;
+
 	git_vector_sort(&index->entries);
+	entry = git_vector_get(&index->entries, position);
+	if (entry != NULL)
+		git_tree_cache_invalidate_path(index->tree, entry->path);
+
 	return git_vector_remove(&index->entries, (unsigned int)position);
 }