From cb0a7d1d7ab8c0ae4e6760145a478100ce443ffe Mon Sep 17 00:00:00 2001 From: Cyborus Date: Sat, 25 Nov 2023 22:04:37 -0500 Subject: [PATCH] set private flag to `-P` instead of `-p` to not conflict with push flag --- src/repo.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/repo.rs b/src/repo.rs index 54a4eb9..0a2c5c1 100644 --- a/src/repo.rs +++ b/src/repo.rs @@ -70,7 +70,7 @@ pub enum RepoCommand { // flags #[clap(long, short)] description: Option, - #[clap(long, short)] + #[clap(long, short = 'P')] private: bool, /// Sets the new repo to be the `origin` remote of the current local repo. #[clap(long, short)]