diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:18 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 15:55:18 -0700 |
commit | 0884726b43e356d5710db3d516c788fd0b95a57c (patch) | |
tree | 566ca60f706c3163afb64ad57dfacf3ab6549bc8 /credential-cache.c | |
parent | 97a9e546a27c98512fef39cd457a4da6dbb5063a (diff) | |
parent | d96a0313efb7133f07dfe36e3cf9d8a04365b1e1 (diff) | |
download | git-0884726b43e356d5710db3d516c788fd0b95a57c.tar.gz |
Merge branch 'rt/placeholder-in-usage'
A couple of commands still showed "[options]" in their usage string
to note where options should come on their command line, but we
spell that "[<options>]" in most places these days.
* rt/placeholder-in-usage:
am, credential-cache: add angle brackets to usage string
Diffstat (limited to 'credential-cache.c')
-rw-r--r-- | credential-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/credential-cache.c b/credential-cache.c index 8689a1519a..f4afdc6988 100644 --- a/credential-cache.c +++ b/credential-cache.c @@ -88,7 +88,7 @@ int main(int argc, const char **argv) int timeout = 900; const char *op; const char * const usage[] = { - "git credential-cache [options] <action>", + "git credential-cache [<options>] <action>", NULL }; struct option options[] = { |