2005-09-08 02:26:23 +02:00
|
|
|
git-tag(1)
|
|
|
|
==========
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:37 +01:00
|
|
|
git-tag - Create a tag object signed with GPG
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-02-17 13:04:39 +01:00
|
|
|
[verse]
|
2005-11-08 11:44:33 +01:00
|
|
|
'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <name> [<head>]
|
2006-02-17 13:04:39 +01:00
|
|
|
'git-tag' -l [<pattern>]
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-02-17 13:04:39 +01:00
|
|
|
Adds a 'tag' reference in `.git/refs/tags/`
|
2005-07-25 08:17:16 +02:00
|
|
|
|
2005-10-06 23:10:39 +02:00
|
|
|
Unless `-f` is given, the tag must not yet exist in
|
|
|
|
`.git/refs/tags/` directory.
|
2005-07-25 08:17:16 +02:00
|
|
|
|
2005-10-06 23:10:39 +02:00
|
|
|
If one of `-a`, `-s`, or `-u <key-id>` is passed, the command
|
|
|
|
creates a 'tag' object, and requires the tag message. Unless
|
|
|
|
`-m <msg>` is given, an editor is started for the user to type
|
|
|
|
in the tag message.
|
2005-07-25 08:17:16 +02:00
|
|
|
|
2005-10-06 23:10:39 +02:00
|
|
|
Otherwise just the SHA1 object name of the commit object is
|
2005-12-02 12:37:13 +01:00
|
|
|
written (i.e. a lightweight tag).
|
2005-10-06 23:10:39 +02:00
|
|
|
|
|
|
|
A GnuPG signed tag object will be created when `-s` or `-u
|
|
|
|
<key-id>` is used. When `-u <key-id>` is not used, the
|
|
|
|
committer identity for the current user is used to find the
|
|
|
|
GnuPG key for signing.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
2005-11-08 11:44:33 +01:00
|
|
|
`-d <tag>` deletes the tag.
|
|
|
|
|
2006-02-17 13:04:39 +01:00
|
|
|
`-l <pattern>` lists tags that match the given pattern (or all
|
|
|
|
if no pattern is given).
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-a::
|
|
|
|
Make an unsigned, annotated tag object
|
|
|
|
|
|
|
|
-s::
|
|
|
|
Make a GPG-signed tag, using the default e-mail address's key
|
|
|
|
|
|
|
|
-u <key-id>::
|
|
|
|
Make a GPG-signed tag, using the given key
|
|
|
|
|
|
|
|
-f::
|
|
|
|
Replace an existing tag with the given name (instead of failing)
|
|
|
|
|
|
|
|
-d::
|
|
|
|
Delete an existing tag with the given name
|
|
|
|
|
2006-02-17 13:04:39 +01:00
|
|
|
-l <pattern>::
|
|
|
|
List tags that match the given pattern (or all if no pattern is given).
|
|
|
|
|
2005-12-09 00:28:05 +01:00
|
|
|
-m <msg>::
|
|
|
|
Use the given tag message (instead of prompting)
|
|
|
|
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
2005-08-15 02:24:36 +02:00
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>,
|
|
|
|
Junio C Hamano <junkio@cox.net> and Chris Wright <chrisw@osdl.org>.
|
2005-05-10 23:32:30 +02:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|