aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-tag.txt
diff options
context:
space:
mode:
authorKai Ruemmler <kai.ruemmler@gmx.net>2005-11-08 11:44:33 +0100
committerJunio C Hamano <junkio@cox.net>2005-11-08 11:26:10 -0800
commit61f81518a2372dd78fa03da2b3d62173c3268ee7 (patch)
treef852fe1c0dc5fee6b7e21cbb2d9805b754c16e6e /Documentation/git-tag.txt
parent23fc63bf8fb7c3627f78ca6743b4f3ae17a5df49 (diff)
downloadgit-61f81518a2372dd78fa03da2b3d62173c3268ee7.tar.gz
git-tag -d <tag>: delete tag <tag>
This adds option '-d' to git-tag.sh and documents it. Signed-off-by: Kai Ruemmler <kai.ruemmler@gmx.net> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-tag.txt')
-rw-r--r--Documentation/git-tag.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 3984812cec..95de436c10 100644
--- a/Documentation/git-tag.txt
+++ b/Documentation/git-tag.txt
@@ -8,7 +8,7 @@ git-tag - Create a tag object signed with GPG
SYNOPSIS
--------
-'git-tag' [-a | -s | -u <key-id>] [-f] [-m <msg>] <name> [<head>]
+'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
DESCRIPTION
-----------
@@ -30,6 +30,8 @@ A GnuPG signed tag object will be created when `-s` or `-u
committer identity for the current user is used to find the
GnuPG key for signing.
+`-d <tag>` deletes the tag.
+
Author
------