Skip to content

Commit

Permalink
Enable the built-in FSMonitor as an experimental feature
Browse files Browse the repository at this point in the history
If `feature.experimental` and `feature.manyFiles` are set, we now start
the built-in FSMonitor by default.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Mar 6, 2021
1 parent 17a284d commit db923ea
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions repo-settings.c
Expand Up @@ -7,7 +7,7 @@

void prepare_repo_settings(struct repository *r)
{
int value;
int value, feature_many_files = 0;
char *strval;

if (r->settings.initialized)
Expand Down Expand Up @@ -62,6 +62,7 @@ void prepare_repo_settings(struct repository *r)
r->settings.use_builtin_fsmonitor = 1;

if (!repo_config_get_bool(r, "feature.manyfiles", &value) && value) {
feature_many_files = 1;
UPDATE_DEFAULT_BOOL(r->settings.index_version, 4);
UPDATE_DEFAULT_BOOL(r->settings.core_untracked_cache, UNTRACKED_CACHE_WRITE);
}
Expand All @@ -70,8 +71,11 @@ void prepare_repo_settings(struct repository *r)
r->settings.fetch_write_commit_graph = value;
UPDATE_DEFAULT_BOOL(r->settings.fetch_write_commit_graph, 0);

if (!repo_config_get_bool(r, "feature.experimental", &value) && value)
if (!repo_config_get_bool(r, "feature.experimental", &value) && value) {
UPDATE_DEFAULT_BOOL(r->settings.fetch_negotiation_algorithm, FETCH_NEGOTIATION_SKIPPING);
if (feature_many_files)
UPDATE_DEFAULT_BOOL(r->settings.use_builtin_fsmonitor, 1);
}

/* Hack for test programs like test-dump-untracked-cache */
if (ignore_untracked_cache_config)
Expand Down

0 comments on commit db923ea

Please sign in to comment.