From 7733883ce38a0141d02f019797dcbccd76d84e65 Mon Sep 17 00:00:00 2001 From: HsuTing Date: Mon, 9 Mar 2026 18:45:01 +0000 Subject: [PATCH] perf(coder): change detail --- src/main.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) 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)]