Skip to content

Commit

Permalink
Fix typos in config support info
Browse files Browse the repository at this point in the history
- `core.looseCompression` - use canonical capitalization for key
- `core.packedGitLimit` - work well on 64-bit, not 32-bit (#1530)
- `core.sparseCheckoutCone` - fix misspelled `sparseCheckout` ref
- `submodule.recurse` - fix minor spelling typo
  • Loading branch information
EliahKagan committed Aug 22, 2024
1 parent 242fedc commit b31d6b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "core.packedGitLimit",
usage: NotApplicable("we target 32bit systems only and don't use a windowing mechanism")
usage: NotApplicable("we target 64-bit systems only and don't use a windowing mechanism")
},
Record {
config: "core.alternateRefsCommand",
Expand All @@ -91,7 +91,7 @@ static GIT_CONFIG: &[Record] = &[
usage: Planned("Allow to remove similar hardcoded value - passing it through will be some effort")
},
Record {
config: "core.loosecompression",
config: "core.looseCompression",
usage: Planned("")
},
Record {
Expand All @@ -100,7 +100,7 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "core.sparseCheckoutCone",
usage: Planned("this is a nice improvement over spareCheckout alone and should one day be available too")
usage: Planned("this is a nice improvement over sparseCheckout alone and should one day be available too")
},
Record {
config: "core.gitProxy",
Expand Down Expand Up @@ -156,7 +156,7 @@ static GIT_CONFIG: &[Record] = &[
},
Record {
config: "submodule.recurse",
usage: Planned("very relevant for doing the right thing during checkouts. Note that 'clone' isnt' affected by it, even though we could make it so for good measure.")
usage: Planned("very relevant for doing the right thing during checkouts. Note that 'clone' isn't affected by it, even though we could make it so for good measure.")
},
Record {
config: "submodule.propagateBranches",
Expand Down

0 comments on commit b31d6b7

Please sign in to comment.