File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ pub enum Subcommands {
83
83
Archive ( archive:: Platform ) ,
84
84
#[ cfg( feature = "gitoxide-core-tools-clean" ) ]
85
85
Clean ( clean:: Command ) ,
86
- /// Subcommands for interacting with commit-graphs
86
+ /// Subcommands for interacting with commit-graph files
87
87
#[ clap( subcommand) ]
88
88
CommitGraph ( commitgraph:: Subcommands ) ,
89
89
/// Interact with the object database.
@@ -738,13 +738,13 @@ pub mod credential {
738
738
pub mod commitgraph {
739
739
#[ derive( Debug , clap:: Subcommand ) ]
740
740
pub enum Subcommands {
741
- /// Verify the integrity of a commit graph
741
+ /// Verify the integrity of a commit graph file
742
742
Verify {
743
- /// output statistical information about the pack
743
+ /// output statistical information about the graph.
744
744
#[ clap( long, short = 's' ) ]
745
745
statistics : bool ,
746
746
} ,
747
- /// List all entries in the commit-graph as reachable by starting from `HEAD`.
747
+ /// List all entries in the commit-graph file as reachable by starting from `HEAD`.
748
748
List {
749
749
/// The rev-spec to list reachable commits from.
750
750
#[ clap( default_value = "@" ) ]
You can’t perform that action at this time.
0 commit comments