diff options
author | Kai Ruemmler <kai.ruemmler@gmx.net> | 2005-11-08 11:44:33 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-08 11:26:10 -0800 |
commit | 61f81518a2372dd78fa03da2b3d62173c3268ee7 (patch) | |
tree | f852fe1c0dc5fee6b7e21cbb2d9805b754c16e6e /Documentation/git-tag.txt | |
parent | make tests ignorable with "make -i" (diff) | |
download | tgif-61f81518a2372dd78fa03da2b3d62173c3268ee7.tar.xz |
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.txt | 4 |
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 ------ |