mirror of
https://github.com/git/git.git
synced 2024-11-23 18:05:29 +08:00
9a20b889e8
In refs-related code we modify the global `log_all_ref_updates` variable, which is done because `should_autocreate_reflog()` does not accept passing an `enum log_refs_config` but instead accesses the global variable. Adapt its interface such that the value is provided by the caller, which allows us to compute the proper value locally without having to modify global state. This change requires us to move the enum to "repo-settings.h", or otherwise we get compilation errors due to include cycles. We're about to fully move this setting into the repo-settings subsystem anyway, so this is fine. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
69 lines
1.6 KiB
C
69 lines
1.6 KiB
C
#ifndef REPO_SETTINGS_H
|
|
#define REPO_SETTINGS_H
|
|
|
|
struct fsmonitor_settings;
|
|
struct repository;
|
|
|
|
enum untracked_cache_setting {
|
|
UNTRACKED_CACHE_KEEP,
|
|
UNTRACKED_CACHE_REMOVE,
|
|
UNTRACKED_CACHE_WRITE,
|
|
};
|
|
|
|
enum fetch_negotiation_setting {
|
|
FETCH_NEGOTIATION_CONSECUTIVE,
|
|
FETCH_NEGOTIATION_SKIPPING,
|
|
FETCH_NEGOTIATION_NOOP,
|
|
};
|
|
|
|
enum log_refs_config {
|
|
LOG_REFS_UNSET = -1,
|
|
LOG_REFS_NONE = 0,
|
|
LOG_REFS_NORMAL,
|
|
LOG_REFS_ALWAYS
|
|
};
|
|
|
|
struct repo_settings {
|
|
int initialized;
|
|
|
|
int core_commit_graph;
|
|
int commit_graph_generation_version;
|
|
int commit_graph_changed_paths_version;
|
|
int gc_write_commit_graph;
|
|
int fetch_write_commit_graph;
|
|
int command_requires_full_index;
|
|
int sparse_index;
|
|
int pack_read_reverse_index;
|
|
int pack_use_bitmap_boundary_traversal;
|
|
int pack_use_multi_pack_reuse;
|
|
|
|
/*
|
|
* Does this repository have core.useReplaceRefs=true (on by
|
|
* default)? This provides a repository-scoped version of this
|
|
* config, though it could be disabled process-wide via some Git
|
|
* builtins or the --no-replace-objects option. See
|
|
* replace_refs_enabled() for more details.
|
|
*/
|
|
int read_replace_refs;
|
|
|
|
struct fsmonitor_settings *fsmonitor; /* lazily loaded */
|
|
|
|
int index_version;
|
|
int index_skip_hash;
|
|
enum untracked_cache_setting core_untracked_cache;
|
|
|
|
int pack_use_sparse;
|
|
enum fetch_negotiation_setting fetch_negotiation_algorithm;
|
|
|
|
int core_multi_pack_index;
|
|
};
|
|
#define REPO_SETTINGS_INIT { \
|
|
.index_version = -1, \
|
|
.core_untracked_cache = UNTRACKED_CACHE_KEEP, \
|
|
.fetch_negotiation_algorithm = FETCH_NEGOTIATION_CONSECUTIVE, \
|
|
}
|
|
|
|
void prepare_repo_settings(struct repository *r);
|
|
|
|
#endif /* REPO_SETTINGS_H */
|