diff options
author | 2015-11-03 15:32:37 -0800 | |
---|---|---|
committer | 2015-11-03 15:32:37 -0800 | |
commit | 14f905caf2da593a65a2be51ff4d219e5cc3de04 (patch) | |
tree | 3b87dabb59e45bb55e9a9e45a7b2c96e07d67dca | |
parent | Merge branch 'dt/t7063-fix-flaky-test' into maint (diff) | |
parent | am, credential-cache: add angle brackets to usage string (diff) | |
download | tgif-14f905caf2da593a65a2be51ff4d219e5cc3de04.tar.xz |
Merge branch 'rt/placeholder-in-usage' into maint
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
-rw-r--r-- | builtin/am.c | 4 | ||||
-rw-r--r-- | credential-cache.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/builtin/am.c b/builtin/am.c index 7b8e11eeaa..98e29e044e 100644 --- a/builtin/am.c +++ b/builtin/am.c @@ -2229,8 +2229,8 @@ int cmd_am(int argc, const char **argv, const char *prefix) int in_progress; const char * const usage[] = { - N_("git am [options] [(<mbox>|<Maildir>)...]"), - N_("git am [options] (--continue | --skip | --abort)"), + N_("git am [<options>] [(<mbox>|<Maildir>)...]"), + N_("git am [<options>] (--continue | --skip | --abort)"), NULL }; 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[] = { |