Skip to content

Commit

Permalink
inform about even more keys in gix progress (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Oct 15, 2022
1 parent 8b9fbd4 commit 0e9bd41
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,30 @@ static GIT_CONFIG: &[Record] = &[
config: "core.symlinks",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.packedGitWindowSize",
usage: NotPlanned { reason: "an optimization for handling many large packs more efficiently seems unnecessary" }
},
Record {
config: "core.packedGitLimit",
usage: NotApplicable { reason: "we target 32bit systems only and don't use a windowing mechanism" }
},
Record {
config: "core.deltaBaseCacheLimit",
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" }
},
Record {
config: "core.bigFileThreshold",
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") }
},
Record {
config: "core.compression",
usage: Planned { note: Some("Allow to remove similar hardcoded value - passing it through will be some effort") },
},
Record {
config: "core.loosecompression",
usage: Planned { note: None },
},
Record {
config: "core.ignorecase",
usage: Planned { note: Some("Needed for checkout") },
Expand Down Expand Up @@ -190,6 +214,13 @@ static GIT_CONFIG: &[Record] = &[
deviation: None,
},
},
Record {
config: "core.askPass",
usage: InModule {
name: "config::snapshot::credential_helpers",
deviation: None,
},
},
Record {
config: "core.ignoreCase",
usage: InModule {
Expand Down

0 comments on commit 0e9bd41

Please sign in to comment.