Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sparse-index.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39dcc859735e2b7e7eab933a98414658266cffe9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SPARSE_INDEX_H__
#define SPARSE_INDEX_H__

struct index_state;
void ensure_full_index(struct index_state *istate);
int convert_to_sparse(struct index_state *istate);

struct repository;
int set_sparse_index_config(struct repository *repo, int enable);

#endif