From: René Scharfe Date: Mon, 8 Nov 2010 18:04:51 +0000 (+0100) Subject: verify-tag: document --verbose X-Git-Tag: v1.7.4-rc0~120^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6e565345e87cf9b8da093e11492fe3a025007230;p=git.git verify-tag: document --verbose Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-verify-tag.txt b/Documentation/git-verify-tag.txt index dada21242..711219749 100644 --- a/Documentation/git-verify-tag.txt +++ b/Documentation/git-verify-tag.txt @@ -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. + ...:: SHA1 identifiers of git tag objects. diff --git a/builtin/verify-tag.c b/builtin/verify-tag.c index 6784846ec..8136dba7a 100644 --- a/builtin/verify-tag.c +++ b/builtin/verify-tag.c @@ -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() };