summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2015-10-15 20:22:13 -0600
committerJunio C Hamano <gitster@pobox.com>2015-10-16 09:38:32 -0700
commite7a7401f8ba22995708fb015b7c75f45256e05bf (patch)
tree0bc3bba1e2f5b2a20b3fca3bf8182dd85e53eaec
parentb7447679e84ed973430ab19fce87f56857b83068 (diff)
downloadgit-pt/pull-builtin.tar.gz
pull: enclose <options> in brackets in the usage stringpt/pull-builtin
All the other placeholders are already shown that way. Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/pull.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/pull.c b/builtin/pull.c
index 722a83c51b..4f14a69884 100644
--- a/builtin/pull.c
+++ b/builtin/pull.c
@@ -65,7 +65,7 @@ static int parse_opt_rebase(const struct option *opt, const char *arg, int unset
}
static const char * const pull_usage[] = {
- N_("git pull [options] [<repository> [<refspec>...]]"),
+ N_("git pull [<options>] [<repository> [<refspec>...]]"),
NULL
};