@@ -503,7 +503,7 @@ pub fn main() -> Result<()> {
503
503
)
504
504
} ,
505
505
) ,
506
- Subcommands :: Revision { cmd } => match cmd {
506
+ Subcommands :: Revision ( cmd) => match cmd {
507
507
revision:: Subcommands :: Explain { spec } => prepare_and_run (
508
508
"repository-commit-describe" ,
509
509
verbose,
@@ -513,7 +513,7 @@ pub fn main() -> Result<()> {
513
513
move |_progress, out, _err| core:: repository:: revision:: explain ( repository ( ) ?. into ( ) , spec, out) ,
514
514
) ,
515
515
} ,
516
- Subcommands :: Commit { cmd } => match cmd {
516
+ Subcommands :: Commit ( cmd) => match cmd {
517
517
commit:: Subcommands :: Describe {
518
518
annotated_tags,
519
519
all_refs,
@@ -548,7 +548,7 @@ pub fn main() -> Result<()> {
548
548
} ,
549
549
) ,
550
550
} ,
551
- Subcommands :: Tree { cmd } => match cmd {
551
+ Subcommands :: Tree ( cmd) => match cmd {
552
552
tree:: Subcommands :: Entries {
553
553
treeish,
554
554
recursive,
@@ -581,7 +581,7 @@ pub fn main() -> Result<()> {
581
581
} ,
582
582
) ,
583
583
} ,
584
- Subcommands :: Odb { cmd } => match cmd {
584
+ Subcommands :: Odb ( cmd) => match cmd {
585
585
odb:: Subcommands :: Entries => prepare_and_run (
586
586
"repository-odb-entries" ,
587
587
verbose,
@@ -599,7 +599,7 @@ pub fn main() -> Result<()> {
599
599
move |_progress, out, err| core:: repository:: odb:: info ( repository ( ) ?. into ( ) , format, out, err) ,
600
600
) ,
601
601
} ,
602
- Subcommands :: Mailmap { cmd } => match cmd {
602
+ Subcommands :: Mailmap ( cmd) => match cmd {
603
603
mailmap:: Subcommands :: Entries => prepare_and_run (
604
604
"repository-mailmap-entries" ,
605
605
verbose,
@@ -609,7 +609,7 @@ pub fn main() -> Result<()> {
609
609
move |_progress, out, err| core:: repository:: mailmap:: entries ( repository ( ) ?. into ( ) , format, out, err) ,
610
610
) ,
611
611
} ,
612
- Subcommands :: Exclude { cmd } => match cmd {
612
+ Subcommands :: Exclude ( cmd) => match cmd {
613
613
exclude:: Subcommands :: Query {
614
614
patterns,
615
615
pathspecs,
0 commit comments