diff options
author | John Cai <johncai86@gmail.com> | 2022-02-15 21:52:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-02-16 02:37:43 +0100 |
commit | d271892fbc099d5afd98f48845e258ded28e7c89 (patch) | |
tree | 3f22c6bce0ba63036f7c4d4e281fb6d6bd6d6be7 | |
parent | name-rev.c: use strbuf_getline instead of limited size buffer (diff) | |
download | git-d271892fbc099d5afd98f48845e258ded28e7c89.tar.xz git-d271892fbc099d5afd98f48845e258ded28e7c89.zip |
name-rev: replace --stdin with --annotate-stdin in synopsis
34ae3b70 (name-rev: deprecate --stdin in favor of --annotate-stdin,
2022-01-05) added --annotate-stdin to replace --stdin as a clearer
flag name. Since --stdin is to be deprecated, we should replace
--stdin in the output from "git name-rev -h".
Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin/name-rev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/name-rev.c b/builtin/name-rev.c index 138e3c30a2..929591269d 100644 --- a/builtin/name-rev.c +++ b/builtin/name-rev.c @@ -473,7 +473,7 @@ static void show_name(const struct object *obj, static char const * const name_rev_usage[] = { N_("git name-rev [<options>] <commit>..."), N_("git name-rev [<options>] --all"), - N_("git name-rev [<options>] --stdin"), + N_("git name-rev [<options>] --annotate-stdin"), NULL }; |