update-index: integrate with sparse index
commitc35e9f5ecd00f0c003dc9120d3c68e95e2ba3bd7
authorVictoria Dye <vdye@github.com>
Tue, 11 Jan 2022 18:05:05 +0000 (11 18:05 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Jan 2022 21:49:45 +0000 (13 13:49 -0800)
treefa30893d645bb25b851734d85d6823893eb36b89
parente015d4d9614f728cc454900fde52af2076d5ef63
update-index: integrate with sparse index

Enable use of the sparse index with `update-index`. Most variations of
`update-index` work without explicitly expanding the index or making any
other updates in or outside of `update-index.c`.

The one usage requiring additional changes is `--cacheinfo`; if a file
inside a sparse directory was specified, the index would not be expanded
until after the cache tree is invalidated, leading to a mismatch between the
index and cache tree. This scenario is handled by rearranging
`add_index_entry_with_check`, allowing `index_name_stage_pos` to expand the
index *before* attempting to invalidate the relevant cache tree path,
avoiding cache tree/index corruption.

Signed-off-by: Victoria Dye <vdye@github.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/update-index.c
read-cache.c
t/t1092-sparse-checkout-compatibility.sh