diff --git a/src/main.rs b/src/main.rs index 861bbb8..f7594c1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -45,12 +45,10 @@ enum Commands { Pull(Pull), } +/// A CLI tool for syncing git repositories between local and remote servers using git bundles. +/// Useful for air-gapped environments or restricted networks without direct git remote access. #[derive(Parser)] -#[command( - version, - about = "Sync git repositories via bundles over SSH", - long_about = "A CLI tool for syncing git repositories between local and remote servers using git bundles.\nUseful for air-gapped environments or restricted networks without direct git remote access." -)] +#[command(version, verbatim_doc_comment)] struct Cli { /// Generate shell completion script #[arg(long, value_enum)]