summaryrefslogtreecommitdiffstats
path: root/git-tag.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2009-08-26 01:35:22 +0000
committerJunio C Hamano <junio@hera.kernel.org>2009-08-26 01:35:22 +0000
commitc276ec7ab95dc6ec845997be86a586c05b26bc2e (patch)
treef949aabb3ae5f186f2bc75992c0ef8ad0377e1ef /git-tag.txt
parentbed00e716afd5ca14f313c92c54ae41bf20167dd (diff)
downloadgit-htmldocs-c276ec7ab95dc6ec845997be86a586c05b26bc2e.tar.gz
Autogenerated HTML docs for v1.6.4.1-196-g31f0b
Diffstat (limited to 'git-tag.txt')
-rw-r--r--git-tag.txt20
1 files changed, 14 insertions, 6 deletions
diff --git a/git-tag.txt b/git-tag.txt
index 1118ce22d..5113eaec6 100644
--- a/git-tag.txt
+++ b/git-tag.txt
@@ -10,17 +10,15 @@ SYNOPSIS
--------
[verse]
'git tag' [-a | -s | -u <key-id>] [-f] [-m <msg> | -F <file>]
- <name> [<commit> | <object>]
-'git tag' -d <name>...
+ <tagname> [<commit> | <object>]
+'git tag' -d <tagname>...
'git tag' [-n[<num>]] -l [--contains <commit>] [<pattern>]
-'git tag' -v <name>...
+'git tag' -v <tagname>...
DESCRIPTION
-----------
-Adds a 'tag' reference in `.git/refs/tags/`. The tag <name> must pass
-linkgit:git-check-ref-format[1] which basicly means that control characters,
-space, ~, ^, :, ?, *, [ and \ are prohibited.
+Adds a tag reference in `.git/refs/tags/`.
Unless `-f` is given, the tag must not yet exist in
`.git/refs/tags/` directory.
@@ -88,6 +86,12 @@ OPTIONS
Implies `-a` if none of `-a`, `-s`, or `-u <key-id>`
is given.
+<tagname>::
+ The name of the tag to create, delete, or describe.
+ The new tag name must pass all checks defined by
+ linkgit:git-check-ref-format[1]. Some of these checks
+ may restrict the characters allowed in a tag name.
+
CONFIGURATION
-------------
By default, 'git-tag' in sign-with-default mode (-s) will use your
@@ -252,6 +256,10 @@ $ GIT_COMMITTER_DATE="2006-10-02 10:31" git tag -s v1.0.1
------------
+SEE ALSO
+--------
+linkgit:git-check-ref-format[1].
+
Author
------
Written by Linus Torvalds <torvalds@osdl.org>,