Skip to content

Commit 1ec27f8

Browse files
committed
take note of additional options for promisor packs and partial clone filters
All obtained from starship: starship/starship#3841
1 parent fe1e646 commit 1ec27f8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/plumbing/progress.rs

+12
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,18 @@ static GIT_CONFIG: &[Record] = &[
532532
config: "sparse.expectFilesOutsideOfPatterns",
533533
usage: NotPlanned { reason: "todo" },
534534
},
535+
Record {
536+
config: "remote.<name>.promisor",
537+
usage: Planned {
538+
note: Some("required for big monorepos, and typically used in conjunction with sparse indices")
539+
}
540+
},
541+
Record {
542+
config: "remote.<name>.partialCloneFilter",
543+
usage: Planned {
544+
note: Some("required for big monorepos, and typically used in conjunction with sparse indices")
545+
}
546+
}
535547
];
536548

537549
/// A programmatic way to record and display progress.

0 commit comments

Comments
 (0)