From 534cea3fce7d32fc924fd477520fa2e631288ca6 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 27 Jun 2011 15:04:32 -0700 Subject: [PATCH] "branch -d" can remove more than one branches Since 03feddd (git-check-ref-format: reject funny ref names, 2005-10-13), "git branch -d" can take more than one branch names to remove. The documentation was correct, but the usage string was not. Signed-off-by: Junio C Hamano --- builtin/branch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/branch.c b/builtin/branch.c index 9cca1b9afc..63f4e69925 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -19,7 +19,7 @@ static const char * const builtin_branch_usage[] = { "git branch [options] [-r | -a] [--merged | --no-merged]", "git branch [options] [-l] [-f] []", - "git branch [options] [-r] (-d | -D) ", + "git branch [options] [-r] (-d | -D) ...", "git branch [options] (-m | -M) [] ", NULL }; -- 2.11.4.GIT