diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2019-11-21 22:04:43 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-22 16:11:44 +0900 |
commit | eb42feca974a333e58c2ca0f3cfa8bf0dd421402 (patch) | |
tree | 5e9e8425ec5a8f1b9cffd3fb9226d3457a31f927 /dir.h | |
parent | sparse-checkout: init and set in cone mode (diff) | |
download | tgif-eb42feca974a333e58c2ca0f3cfa8bf0dd421402.tar.xz |
unpack-trees: hash less in cone mode
The sparse-checkout feature in "cone mode" can use the fact that
the recursive patterns are "connected" to the root via parent
patterns to decide if a directory is entirely contained in the
sparse-checkout or entirely removed.
In these cases, we can skip hashing the paths within those
directories and simply set the skipworktree bit to the correct
value.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.h')
-rw-r--r-- | dir.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -264,6 +264,7 @@ enum pattern_match_result { UNDECIDED = -1, NOT_MATCHED = 0, MATCHED = 1, + MATCHED_RECURSIVE = 2, }; /* |