Skip to content

Commit

Permalink
add more configuration variables prior to potentially using them; rem…
Browse files Browse the repository at this point in the history
…ove `index.skipHash`
  • Loading branch information
Byron committed Aug 27, 2023
1 parent b310d04 commit 773b6e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static GIT_CONFIG: &[Record] = &[
usage: NotApplicable {reason: "parallelism is efficient enough to always run with benefit"},
},
Record {
config: "feature.manyFile",
config: "feature.manyFiles",
usage: Planned {note: Some("big repositories are on the roadmap")},
},
Record {
Expand All @@ -196,10 +196,6 @@ static GIT_CONFIG: &[Record] = &[
config: "index.sparse",
usage: Planned {note: Some("we can read sparse indices and support for it will be added early on")},
},
Record {
config: "index.skipHash",
usage: Planned {note: Some("important to not unnecessarily reject indices just because they are missing a hash (or it is null)")},
},
Record {
config: "merge.renormalize",
usage: Planned {note: Some("once merging is being implemented, renormalization should be respected")},
Expand Down Expand Up @@ -504,6 +500,10 @@ static GIT_CONFIG: &[Record] = &[
config: "status.renames",
usage: Planned { note: Some("the same as diff.renames") }
},
Record {
config: "transfer.credentialsInUrl",
usage: Planned { note: Some("currently we are likely to expose passwords in errors or in other places, and it's better to by default not do that") }
},
Record {
config: "diff.*.textconv",
usage: Planned { note: None }
Expand Down

0 comments on commit 773b6e3

Please sign in to comment.