From fb7b680d1f91fd22aaa8f84ec05edd651407670e Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Thu, 16 Mar 2023 21:06:00 -0700 Subject: [PATCH] cli: don't hide `jj commit` from help output The command is not only useful for new users, it's also useful as a combination of `jj describe` and `jj new`. --- src/commands/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 0d0e9a850..5091087a4 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -415,7 +415,7 @@ struct DescribeArgs { /// Update the description and create a new change on top. #[derive(clap::Args, Clone, Debug)] -#[command(hide = true, visible_aliases=&["ci"])] +#[command(visible_aliases=&["ci"])] struct CommitArgs { /// The change description to use (don't open editor) #[arg(long, short)]