Skip to content

Commit

Permalink
update progress based on filesystem config usage (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Oct 15, 2022
1 parent 91b360f commit de13c66
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,23 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "core.fileMode",
usage: Planned { note: Some("Needed for checkout") },
usage: InModule {name: "config", deviation: None},
},
Record {
config: "core.hideDotFiles",
usage: Planned {note: Some("Seems useful, but needs demand from windows users")}
},
Record {
config: "core.trustCTime",
usage: Planned { note: Some("Needed for checkout") },
usage: Planned { note: Some("Needed for checkout - read from config but not used yet") },
},
Record {
config: "core.checkStat",
usage: Planned { note: Some("Needed for checkout") },
},
Record {
config: "core.symlinks",
usage: Planned { note: Some("Needed for checkout") },
usage: InModule {name: "config", deviation: None},
},
Record {
config: "core.packedGitWindowSize",
Expand Down Expand Up @@ -131,7 +135,11 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "core.ignorecase",
usage: Planned { note: Some("Needed for checkout") },
usage: InModule {name: "config", deviation: None}
},
Record {
config: "core.precomposeUnicode",
usage: InModule {name: "config", deviation: Some("This must be explicitly handled when data is coming into the program to fully work")}
},
Record {
config: "core.protectHFS",
Expand Down

0 comments on commit de13c66

Please sign in to comment.