Skip to content

Commit

Permalink
take note of additional options for promisor packs and partial clone …
Browse files Browse the repository at this point in the history
…filters

All obtained from starship: starship/starship#3841
  • Loading branch information
Byron committed Nov 4, 2022
1 parent fe1e646 commit 1ec27f8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,18 @@ static GIT_CONFIG: &[Record] = &[
config: "sparse.expectFilesOutsideOfPatterns",
usage: NotPlanned { reason: "todo" },
},
Record {
config: "remote.<name>.promisor",
usage: Planned {
note: Some("required for big monorepos, and typically used in conjunction with sparse indices")
}
},
Record {
config: "remote.<name>.partialCloneFilter",
usage: Planned {
note: Some("required for big monorepos, and typically used in conjunction with sparse indices")
}
}
];

/// A programmatic way to record and display progress.
Expand Down

0 comments on commit 1ec27f8

Please sign in to comment.