mirror of
https://git.proxmox.com/git/libgit2
synced 2025-08-06 07:00:27 +00:00
Invalidate the path when removing from the index
Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
This commit is contained in:
parent
e23ede0de5
commit
b419fe2d8c
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user