diff options
author | W. Trevor King <wking@tremily.us> | 2012-10-23 17:00:21 -0400 |
---|---|---|
committer | Jeff King <peff@peff.net> | 2012-10-25 04:46:13 -0400 |
commit | 38ae92e4d027063b9b87e51a9bf12809d10066f6 (patch) | |
tree | a80b0557be751d6b97f73423c78544022c968c8f /git-submodule.sh | |
parent | 8c7a786b6c8eae8eac91083cdc9a6e337bc133b0 (diff) | |
download | git-38ae92e4d027063b9b87e51a9bf12809d10066f6.tar.gz |
git-submodule: wrap branch option with "<>" in usage strings.
Use "-b <branch>" instead of "-b branch". This brings the usage
strings in line with other options, e.g. "--reference <repository>".
Signed-off-by: W. Trevor King <wking@tremily.us>
Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'git-submodule.sh')
-rwxr-xr-x | git-submodule.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-submodule.sh b/git-submodule.sh index ab6b1107b6..02f82e9ed5 100755 --- a/git-submodule.sh +++ b/git-submodule.sh @@ -5,7 +5,7 @@ # Copyright (c) 2007 Lars Hjemli dashless=$(basename "$0" | sed -e 's/-/ /') -USAGE="[--quiet] add [-b branch] [-f|--force] [--reference <repository>] [--] <repository> [<path>] +USAGE="[--quiet] add [-b <branch>] [-f|--force] [--reference <repository>] [--] <repository> [<path>] or: $dashless [--quiet] status [--cached] [--recursive] [--] [<path>...] or: $dashless [--quiet] init [--] [<path>...] or: $dashless [--quiet] update [--init] [-N|--no-fetch] [-f|--force] [--rebase] [--reference <repository>] [--merge] [--recursive] [--] [<path>...] |