sparse-checkout: update working directory in-process
commite091228e17e88b1bc16cb50d5c3aff10dc5119d1
authorDerrick Stolee <dstolee@microsoft.com>
Thu, 21 Nov 2019 22:04:46 +0000 (21 22:04 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 22 Nov 2019 07:11:44 +0000 (22 16:11 +0900)
tree22ed9de6fbd48944e5ffc5547bd01ade3300caca
parente9de487aa36aa75b5c9068c6bd07cfb8bf2ee955
sparse-checkout: update working directory in-process

The sparse-checkout builtin used 'git read-tree -mu HEAD' to update the
skip-worktree bits in the index and to update the working directory.
This extra process is overly complex, and prone to failure. It also
requires that we write our changes to the sparse-checkout file before
trying to update the index.

Remove this extra process call by creating a direct call to
unpack_trees() in the same way 'git read-tree -mu HEAD' does. In
addition, provide an in-memory list of patterns so we can avoid
reading from the sparse-checkout file. This allows us to test a
proposed change to the file before writing to it.

An earlier version of this patch included a bug when the 'set' command
failed due to the "Sparse checkout leaves no entry on working directory"
error. It would not rollback the index.lock file, so the replay of the
old sparse-checkout specification would fail. A test in t1091 now
covers that scenario.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/read-tree.c
builtin/sparse-checkout.c
t/t1091-sparse-checkout-builtin.sh
unpack-trees.c
unpack-trees.h