diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-11-03 15:32:38 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-11-03 15:32:38 -0800 |
commit | f5f76845961f4207b3dc8c186b2356f160276e45 (patch) | |
tree | f88d6c141e2c6040b69e015e8c9d9a37bdd80111 /builtin/check-attr.c | |
parent | Merge branch 'rt/placeholder-in-usage' into maint (diff) | |
parent | usage: do not insist that standard input must come from a file (diff) | |
download | tgif-f5f76845961f4207b3dc8c186b2356f160276e45.tar.xz |
Merge branch 'jc/usage-stdin' into maint
The synopsis text and the usage string of subcommands that read
list of things from the standard input are often shown as if they
only take input from a file on a filesystem, which was misleading.
* jc/usage-stdin:
usage: do not insist that standard input must come from a file
Diffstat (limited to 'builtin/check-attr.c')
-rw-r--r-- | builtin/check-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/check-attr.c b/builtin/check-attr.c index 21d2bedcc9..265c9ba022 100644 --- a/builtin/check-attr.c +++ b/builtin/check-attr.c @@ -9,7 +9,7 @@ static int cached_attrs; static int stdin_paths; static const char * const check_attr_usage[] = { N_("git check-attr [-a | --all | <attr>...] [--] <pathname>..."), -N_("git check-attr --stdin [-z] [-a | --all | <attr>...] < <list-of-paths>"), +N_("git check-attr --stdin [-z] [-a | --all | <attr>...]"), NULL }; |