Sync with 2.33.8
[git/debian.git] / sparse-index.h
blob9f3d7bc7fafce1968572c0f6b962a4d72f7a064c
1 #ifndef SPARSE_INDEX_H__
2 #define SPARSE_INDEX_H__
4 struct index_state;
5 #define SPARSE_INDEX_MEMORY_ONLY (1 << 0)
6 int convert_to_sparse(struct index_state *istate, int flags);
8 /*
9 * Some places in the codebase expect to search for a specific path.
10 * This path might be outside of the sparse-checkout definition, in
11 * which case a sparse-index may not contain a path for that index.
13 * Given an index and a path, check to see if a leading directory for
14 * 'path' exists in the index as a sparse directory. In that case,
15 * expand that sparse directory to a full range of cache entries and
16 * populate the index accordingly.
18 void expand_to_path(struct index_state *istate,
19 const char *path, size_t pathlen, int icase);
21 struct repository;
22 int set_sparse_index_config(struct repository *repo, int enable);
24 #endif