sparse-checkout: hold pattern list in index
commit836e25c51b20c1f1d122dc17a1c57dad15ff5854
authorDerrick Stolee <dstolee@microsoft.com>
Tue, 30 Mar 2021 13:10:53 +0000 (30 13:10 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 30 Mar 2021 19:57:46 +0000 (30 12:57 -0700)
treeee063bd53feba71a6a5a19d6c2d628fe71c126eb
parent6863df355038dd2d30ac9899bdb304d8a57523af
sparse-checkout: hold pattern list in index

As we modify the sparse-checkout definition, we perform index operations
on a pattern_list that only exists in-memory. This allows easy backing
out in case the index update fails.

However, if the index write itself cares about the sparse-checkout
pattern set, we need access to that in-memory copy. Place a pointer to
a 'struct pattern_list' in the index so we can access this on-demand.
This will be used in the next change which uses the sparse-checkout
definition to filter out directories that are outside the sparse cone.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/sparse-checkout.c
cache.h