Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

64bit dates #892

Merged
merged 14 commits into from
Jun 11, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add options related to commitgraph to gix config tree
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
commit 7aaaebfea9c1935f0a87ab81cef4261e00e4c159
12 changes: 12 additions & 0 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
@@ -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")},