diff --git a/src/commands.rs b/src/commands.rs index 907da8e5a..0ae0e866f 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1033,6 +1033,7 @@ fn get_app<'a, 'b>() -> App<'a, 'b> { .subcommand(SubCommand::with_name("reindex").about("Rebuild commit index")); App::new("Jujutsu") .global_setting(clap::AppSettings::ColoredHelp) + .global_setting(clap::AppSettings::VersionlessSubcommands) .setting(clap::AppSettings::SubcommandRequiredElseHelp) .version(crate_version!()) .author("Martin von Zweigbergk ")