Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down