Skip to content

Fix typos in config support info #1531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading