Skip to content

Commit

Permalink
update gix progress records
Browse files Browse the repository at this point in the history
  • Loading branch information
Sidney Douw committed Oct 27, 2022
1 parent 77a9d42 commit b05a2e7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/plumbing/progress.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,26 @@ static GIT_CONFIG: &[Record] = &[
deviation: None,
},
},
Record {
config: "advice.updateSparsePath",
usage: NotPlanned { reason: "gitoxide does not yet have an 'advice' system" },
},
Record {
config: "core.sparseCheckout",
usage: Planned { note: Some("together with 'index.sparse' and 'core.sparseCheckoutCone', configures if the index should be written sparse or not") },
},
Record {
config: "core.sparseCheckoutCone",
usage: Planned { note: Some("non-cone mode is deprecated but should still fail gracefully if encountered") },
},
Record {
config: "index.sparse",
usage: Planned { note: Some("together with 'core.sparseCheckout' and 'core.sparseCheckoutCone', configures if the index should be written sparse or not") },
},
Record {
config: "sparse.expectFilesOutsideOfPatterns",
usage: NotPlanned { reason: "todo" },
},
];

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

0 comments on commit b05a2e7

Please sign in to comment.