Skip to content

Commit 6e56534

Browse files
René Scharfegitster
authored andcommitted
verify-tag: document --verbose
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3927142 commit 6e56534

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Documentation/git-verify-tag.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Validates the gpg signature created by 'git tag'.
1515

1616
OPTIONS
1717
-------
18+
-v::
19+
--verbose::
20+
Print the contents of the tag object before validating it.
21+
1822
<tag>...::
1923
SHA1 identifiers of git tag objects.
2024

builtin/verify-tag.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
9393
{
9494
int i = 1, verbose = 0, had_error = 0;
9595
const struct option verify_tag_options[] = {
96-
OPT__VERBOSE(&verbose, "be verbose"),
96+
OPT__VERBOSE(&verbose, "print tag contents"),
9797
OPT_END()
9898
};
9999

0 commit comments

Comments
 (0)