Skip to content

Commit 0e9bd41

Browse files
committed
inform about even more keys in gix progress (#450)
1 parent 8b9fbd4 commit 0e9bd41

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/plumbing/progress.rs

+31
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,30 @@ static GIT_CONFIG: &[Record] = &[
105105
config: "core.symlinks",
106106
usage: Planned { note: Some("Needed for checkout") },
107107
},
108+
Record {
109+
config: "core.packedGitWindowSize",
110+
usage: NotPlanned { reason: "an optimization for handling many large packs more efficiently seems unnecessary" }
111+
},
112+
Record {
113+
config: "core.packedGitLimit",
114+
usage: NotApplicable { reason: "we target 32bit systems only and don't use a windowing mechanism" }
115+
},
116+
Record {
117+
config: "core.deltaBaseCacheLimit",
118+
usage: NotApplicable { reason: "we use a small 64 slot pack delta cache by default, which can be replaced with larger caches as determined by the algorithm. This keeps memory usage low and is fast enough" }
119+
},
120+
Record {
121+
config: "core.bigFileThreshold",
122+
usage: Planned { note: Some("unfortunately we can't stream packed files yet, even if not delta-compressed, but respecting the threshold for other operations is definitely a must") }
123+
},
124+
Record {
125+
config: "core.compression",
126+
usage: Planned { note: Some("Allow to remove similar hardcoded value - passing it through will be some effort") },
127+
},
128+
Record {
129+
config: "core.loosecompression",
130+
usage: Planned { note: None },
131+
},
108132
Record {
109133
config: "core.ignorecase",
110134
usage: Planned { note: Some("Needed for checkout") },
@@ -190,6 +214,13 @@ static GIT_CONFIG: &[Record] = &[
190214
deviation: None,
191215
},
192216
},
217+
Record {
218+
config: "core.askPass",
219+
usage: InModule {
220+
name: "config::snapshot::credential_helpers",
221+
deviation: None,
222+
},
223+
},
193224
Record {
194225
config: "core.ignoreCase",
195226
usage: InModule {

0 commit comments

Comments
 (0)