Skip to content

Commit

Permalink
plan more core filesystem attributes (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Oct 14, 2022
1 parent dd3b336 commit d10a82e
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,26 @@ static GIT_CONFIG: &[Record] = &[
config: "core.safeCRLF",
usage: Planned { note: Some("safety is not optional") },
},
Record {
config: "core.fileMode",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.trustCTime",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.checkStat",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.symlinks",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.ignorecase",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.protectHFS",
usage: Planned { note: Some("relevant for checkout on MacOS") },
Expand Down Expand Up @@ -119,7 +139,7 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "checkout.workers",
usage: Planned { note: Some("definitely, and we will deviate to allow for parallelism by default unless specified") },
usage: InModule {name: "clone::checkout", deviation: Some("if unset, uses all cores instead of just one")},
},
Record {
config: "checkout.thresholdForParallelism",
Expand Down

0 comments on commit d10a82e

Please sign in to comment.