Skip to content

Commit

Permalink
add options related to commitgraph to gix config tree
Browse files Browse the repository at this point in the history
Note that we mention specifically our inability to find a test for
https://github.com/git/git/blob/fe86abd7511a9a6862d5706c6fa1d9b57a63ba09/commit-graph.c#L796-L805
  • Loading branch information
Byron committed Jun 11, 2023
1 parent 1fdaf71 commit 7aaaebf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,18 @@ static GIT_CONFIG: &[Record] = &[
config: "core.preloadIndex",
usage: Planned {note: Some("it's enabled by default and allows parallel stat checks - it's using a lot of CPU for just minor performance boosts though")},
},
Record {
config: "commitGraph.generationVersion",
usage: NotPlanned { reason: "couldn't find a test that would require corrected generation numbers, even `git` has no test for this." },
},
Record {
config: "commitGraph.maxNewFilters",
usage: NotPlanned { reason: "can be considered when the underlying feature is actually used or needed" },
},
Record {
config: "commitGraph.readChangedPaths",
usage: NotPlanned { reason: "can be considered when the underlying feature is actually used or needed" },
},
Record {
config: "index.sparse",
usage: Planned {note: Some("we can read sparse indices and support for it will be added early on")},
Expand Down

0 comments on commit 7aaaebf

Please sign in to comment.