Code

verify-tag: document --verbose
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>
Mon, 8 Nov 2010 18:04:51 +0000 (19:04 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 15 Nov 2010 18:05:54 +0000 (10:05 -0800)
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-verify-tag.txt
builtin/verify-tag.c

index dada21242c915148543dda8485b3322894aeb4c5..711219749cac76ff1363ce5f27e28da9a7ecba57 100644 (file)
@@ -15,6 +15,10 @@ Validates the gpg signature created by 'git tag'.
 
 OPTIONS
 -------
+-v::
+--verbose::
+       Print the contents of the tag object before validating it.
+
 <tag>...::
        SHA1 identifiers of git tag objects.
 
index 6784846ec9a1cfe9e6155e5916eaf26b3e111cd5..8136dba7a1a43bf90cd213a30a7f1a57a1248ac3 100644 (file)
@@ -93,7 +93,7 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
 {
        int i = 1, verbose = 0, had_error = 0;
        const struct option verify_tag_options[] = {
-               OPT__VERBOSE(&verbose, "be verbose"),
+               OPT__VERBOSE(&verbose, "print tag contents"),
                OPT_END()
        };