summaryrefslogtreecommitdiffstats
path: root/git-tag.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-02-17 12:06:24 +0000
committerJunio C Hamano <junio@hera.kernel.org>2006-02-17 12:06:24 +0000
commit50e472795a94e2797d506550df1526f07a5e7623 (patch)
treecaae42907166308a9d5b22783e95f41b9b1c16ba /git-tag.txt
parentc915412d65374e88aa1e6de642bb0e0616d387e3 (diff)
downloadgit-htmldocs-50e472795a94e2797d506550df1526f07a5e7623.tar.gz
Autogenerated HTML docs for v1.2.1-gb867
Diffstat (limited to 'git-tag.txt')
-rw-r--r--git-tag.txt10
1 files changed, 9 insertions, 1 deletions
diff --git a/git-tag.txt b/git-tag.txt
index e8892bb0b..e1c76c600 100644
--- a/git-tag.txt
+++ b/git-tag.txt
@@ -8,11 +8,13 @@ git-tag - Create a tag object signed with GPG
SYNOPSIS
--------
+[verse]
'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
+'git-tag' -l [<pattern>]
DESCRIPTION
-----------
-Adds a 'tag' reference in .git/refs/tags/
+Adds a 'tag' reference in `.git/refs/tags/`
Unless `-f` is given, the tag must not yet exist in
`.git/refs/tags/` directory.
@@ -32,6 +34,9 @@ GnuPG key for signing.
`-d <tag>` deletes the tag.
+`-l <pattern>` lists tags that match the given pattern (or all
+if no pattern is given).
+
OPTIONS
-------
-a::
@@ -49,6 +54,9 @@ OPTIONS
-d::
Delete an existing tag with the given name
+-l <pattern>::
+ List tags that match the given pattern (or all if no pattern is given).
+
-m <msg>::
Use the given tag message (instead of prompting)