Skip to content

Commit 773b6e3

Browse files
committed
add more configuration variables prior to potentially using them; remove index.skipHash
1 parent b310d04 commit 773b6e3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: src/plumbing/progress.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ static GIT_CONFIG: &[Record] = &[
173173
usage: NotApplicable {reason: "parallelism is efficient enough to always run with benefit"},
174174
},
175175
Record {
176-
config: "feature.manyFile",
176+
config: "feature.manyFiles",
177177
usage: Planned {note: Some("big repositories are on the roadmap")},
178178
},
179179
Record {
@@ -196,10 +196,6 @@ static GIT_CONFIG: &[Record] = &[
196196
config: "index.sparse",
197197
usage: Planned {note: Some("we can read sparse indices and support for it will be added early on")},
198198
},
199-
Record {
200-
config: "index.skipHash",
201-
usage: Planned {note: Some("important to not unnecessarily reject indices just because they are missing a hash (or it is null)")},
202-
},
203199
Record {
204200
config: "merge.renormalize",
205201
usage: Planned {note: Some("once merging is being implemented, renormalization should be respected")},
@@ -504,6 +500,10 @@ static GIT_CONFIG: &[Record] = &[
504500
config: "status.renames",
505501
usage: Planned { note: Some("the same as diff.renames") }
506502
},
503+
Record {
504+
config: "transfer.credentialsInUrl",
505+
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") }
506+
},
507507
Record {
508508
config: "diff.*.textconv",
509509
usage: Planned { note: None }

0 commit comments

Comments
 (0)