mirror of
https://github.com/git/git
synced 2024-10-30 04:01:21 +00:00
cfde4cd6ff
Expose 'is_sparse_index_allowed()' publicly so that it may be used by callers outside of 'sparse-index.c'. While no such callers exist yet, it will be used in a subsequent commit. Signed-off-by: Victoria Dye <vdye@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
27 lines
1 KiB
C
27 lines
1 KiB
C
#ifndef SPARSE_INDEX_H__
|
|
#define SPARSE_INDEX_H__
|
|
|
|
struct index_state;
|
|
#define SPARSE_INDEX_MEMORY_ONLY (1 << 0)
|
|
int is_sparse_index_allowed(struct index_state *istate, int flags);
|
|
int convert_to_sparse(struct index_state *istate, int flags);
|
|
void ensure_correct_sparsity(struct index_state *istate);
|
|
void clear_skip_worktree_from_present_files(struct index_state *istate);
|
|
|
|
/*
|
|
* Some places in the codebase expect to search for a specific path.
|
|
* This path might be outside of the sparse-checkout definition, in
|
|
* which case a sparse-index may not contain a path for that index.
|
|
*
|
|
* Given an index and a path, check to see if a leading directory for
|
|
* 'path' exists in the index as a sparse directory. In that case,
|
|
* expand that sparse directory to a full range of cache entries and
|
|
* populate the index accordingly.
|
|
*/
|
|
void expand_to_path(struct index_state *istate,
|
|
const char *path, size_t pathlen, int icase);
|
|
|
|
struct repository;
|
|
int set_sparse_index_config(struct repository *repo, int enable);
|
|
|
|
#endif
|