From: Junio C Hamano Date: Mon, 27 Jun 2011 22:04:32 +0000 (-0700) Subject: "branch -d" can remove more than one branches X-Git-Tag: v1.7.6.1~59^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=534cea3fce7d32fc924fd477520fa2e631288ca6;p=git.git "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 --- diff --git a/builtin/branch.c b/builtin/branch.c index 9cca1b9af..63f4e6992 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 };