]> git.ipfire.org Git - thirdparty/git.git/blame - repo-settings.c
Merge branch 'dl/apply-3way-diff3'
[thirdparty/git.git] / repo-settings.c
CommitLineData
7211b9e7
DS
1#include "cache.h"
2#include "config.h"
3#include "repository.h"
4
31b1de6a
DS
5#define UPDATE_DEFAULT_BOOL(s,v) do { if (s == -1) { s = v; } } while(0)
6
7211b9e7
DS
7void prepare_repo_settings(struct repository *r)
8{
9 int value;
ad0fb659 10 char *strval;
7211b9e7
DS
11
12 if (r->settings.initialized)
13 return;
14
15 /* Defaults */
16 memset(&r->settings, -1, sizeof(r->settings));
17
18 if (!repo_config_get_bool(r, "core.commitgraph", &value))
19 r->settings.core_commit_graph = value;
20 if (!repo_config_get_bool(r, "gc.writecommitgraph", &value))
21 r->settings.gc_write_commit_graph = value;
31b1de6a
DS
22 UPDATE_DEFAULT_BOOL(r->settings.core_commit_graph, 1);
23 UPDATE_DEFAULT_BOOL(r->settings.gc_write_commit_graph, 1);
7211b9e7 24
c11e9966 25 if (!repo_config_get_int(r, "index.version", &value))
7211b9e7 26 r->settings.index_version = value;
ad0fb659
DS
27 if (!repo_config_get_maybe_bool(r, "core.untrackedcache", &value)) {
28 if (value == 0)
29 r->settings.core_untracked_cache = UNTRACKED_CACHE_REMOVE;
30 else
31 r->settings.core_untracked_cache = UNTRACKED_CACHE_WRITE;
32 } else if (!repo_config_get_string(r, "core.untrackedcache", &strval)) {
33 if (!strcasecmp(strval, "keep"))
34 r->settings.core_untracked_cache = UNTRACKED_CACHE_KEEP;
35
36 free(strval);
37 }
38
aaf633c2
DS
39 if (!repo_config_get_string(r, "fetch.negotiationalgorithm", &strval)) {
40 if (!strcasecmp(strval, "skipping"))
41 r->settings.fetch_negotiation_algorithm = FETCH_NEGOTIATION_SKIPPING;
42 else
43 r->settings.fetch_negotiation_algorithm = FETCH_NEGOTIATION_DEFAULT;
44 }
45
7211b9e7
DS
46 if (!repo_config_get_bool(r, "pack.usesparse", &value))
47 r->settings.pack_use_sparse = value;
c6cc4c5a
DS
48 if (!repo_config_get_bool(r, "feature.manyfiles", &value) && value) {
49 UPDATE_DEFAULT_BOOL(r->settings.index_version, 4);
50 UPDATE_DEFAULT_BOOL(r->settings.core_untracked_cache, UNTRACKED_CACHE_WRITE);
51 }
50f26bd0
DS
52 if (!repo_config_get_bool(r, "fetch.writecommitgraph", &value))
53 r->settings.fetch_write_commit_graph = value;
aaf633c2
DS
54 if (!repo_config_get_bool(r, "feature.experimental", &value) && value) {
55 UPDATE_DEFAULT_BOOL(r->settings.pack_use_sparse, 1);
56 UPDATE_DEFAULT_BOOL(r->settings.fetch_negotiation_algorithm, FETCH_NEGOTIATION_SKIPPING);
50f26bd0 57 UPDATE_DEFAULT_BOOL(r->settings.fetch_write_commit_graph, 1);
aaf633c2 58 }
50f26bd0 59 UPDATE_DEFAULT_BOOL(r->settings.fetch_write_commit_graph, 0);
ad0fb659
DS
60
61 /* Hack for test programs like test-dump-untracked-cache */
62 if (ignore_untracked_cache_config)
63 r->settings.core_untracked_cache = UNTRACKED_CACHE_KEEP;
64 else
65 UPDATE_DEFAULT_BOOL(r->settings.core_untracked_cache, UNTRACKED_CACHE_KEEP);
aaf633c2
DS
66
67 UPDATE_DEFAULT_BOOL(r->settings.fetch_negotiation_algorithm, FETCH_NEGOTIATION_DEFAULT);
7211b9e7 68}