From f0b9969e74df054db0d18ef8885bb31bf3759a6e Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Thu, 29 Jun 2023 16:09:59 +0900 Subject: [PATCH] cli: document that "git push --all" includes deleted branches Since deleted branches are a bit special, I couldn't be sure that --all includes deleted without reading the source code. --- src/commands/git.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/git.rs b/src/commands/git.rs index bf90a3ed3..bc470c785 100644 --- a/src/commands/git.rs +++ b/src/commands/git.rs @@ -132,7 +132,7 @@ pub struct GitPushArgs { /// Push only this branch (can be repeated) #[arg(long, short)] branch: Vec, - /// Push all branches + /// Push all branches (including deleted branches) #[arg(long)] all: bool, /// Push all deleted branches