aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-tag.txt
diff options
context:
space:
mode:
authorJonas Fonseca <fonseca@diku.dk>2007-05-01 09:24:59 +0200
committerJunio C Hamano <junkio@cox.net>2007-05-03 23:27:03 -0700
commit86b9e017e485a4e56fb8f096cb9094c415483118 (patch)
tree013bc1ba98874aaebb0606cffdfdb57255a1dc5f /Documentation/git-tag.txt
parentff06c743dcd7f451381b41aeac4288179eaec428 (diff)
downloadgit-86b9e017e485a4e56fb8f096cb9094c415483118.tar.gz
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 <fonseca@diku.dk> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-tag.txt')
-rw-r--r--Documentation/git-tag.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 70235e8ddb..4e3e02756c 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 <key-id>] [-f | -v] [-m <msg> | -F <file>] <name> [<head>]
+'git-tag' [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>] <name> [<head>]
'git-tag' -d <name>...
'git-tag' -l [<pattern>]
+'git-tag' -v <name>
DESCRIPTION
-----------
@@ -77,8 +78,10 @@ committer identity (of the form "Your Name <your@email.address>") 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 = <gpg-key-id>
+-------------------------------------
DISCUSSION