2026-03-07 00:53:13 +01:00
|
|
|
use clap::Parser;
|
2026-02-05 20:34:57 +01:00
|
|
|
|
2026-03-07 00:53:13 +01:00
|
|
|
/// Interactive conventional commit tool for Jujutsu
|
|
|
|
|
///
|
|
|
|
|
/// Guides you through creating a properly formatted conventional commit message
|
|
|
|
|
/// and applies it to the current change in your Jujutsu repository.
|
|
|
|
|
#[derive(Debug, Parser)]
|
|
|
|
|
#[command(
|
|
|
|
|
name = "jj-cz",
|
|
|
|
|
version,
|
|
|
|
|
about = "Interactive conventional commit tool for Jujutsu",
|
|
|
|
|
long_about = "Guides you through creating a properly formatted conventional \
|
|
|
|
|
commit message and applies it to the current change in your \
|
|
|
|
|
Jujutsu repository.\n\n\
|
|
|
|
|
This tool requires an interactive terminal (TTY)."
|
|
|
|
|
)]
|
|
|
|
|
pub struct Cli;
|