From: Jonas Fonseca Date: Tue, 1 May 2007 07:24:59 +0000 (+0200) Subject: git-tag(1): -v option is a subcommand; fix code block X-Git-Tag: v1.5.2-rc2~3 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=86b9e017e485a4e56fb8f096cb9094c415483118;p=git.git git-tag(1): -v option is a subcommand; fix code block When the -v is passed, git-tag will exit after it is processed like it does with the -d and -l options. Additionally, missing code block caused wrong rendering of an option example. Signed-off-by: Jonas Fonseca Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index 70235e8dd..4e3e02756 100644 --- a/Documentation/git-tag.txt +++ b/Documentation/git-tag.txt @@ -9,9 +9,10 @@ git-tag - Create, list, delete or verify a tag object signed with GPG SYNOPSIS -------- [verse] -'git-tag' [-a | -s | -u ] [-f | -v] [-m | -F ] [] +'git-tag' [-a | -s | -u ] [-f] [-m | -F ] [] 'git-tag' -d ... 'git-tag' -l [] +'git-tag' -v DESCRIPTION ----------- @@ -77,8 +78,10 @@ committer identity (of the form "Your Name ") to find a key. If you want to use a different default key, you can specify it in the repository configuration as follows: +------------------------------------- [user] signingkey = +------------------------------------- DISCUSSION