Autogenerated manpages for v2.44.0-rc1-17-g3e0d3
[git-manpages.git] / man1 / git-tag.1
blob642f77de4dc35af12f7e5bb247d3331623637641
1 '\" t
2 .\"     Title: git-tag
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2024-02-15
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.44.0.rc1.17.g3e0d3cd5c7
8 .\"  Language: English
9 .\"
10 .TH "GIT\-TAG" "1" "2024\-02\-15" "Git 2\&.44\&.0\&.rc1\&.17\&.g3" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-tag \- Create, list, delete or verify a tag object signed with GPG
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit tag\fR [\-a | \-s | \-u <key\-id>] [\-f] [\-m <msg> | \-F <file>] [\-e]
36         <tagname> [<commit> | <object>]
37 \fIgit tag\fR \-d <tagname>\&...
38 \fIgit tag\fR [\-n[<num>]] \-l [\-\-contains <commit>] [\-\-no\-contains <commit>]
39         [\-\-points\-at <object>] [\-\-column[=<options>] | \-\-no\-column]
40         [\-\-create\-reflog] [\-\-sort=<key>] [\-\-format=<format>]
41         [\-\-merged <commit>] [\-\-no\-merged <commit>] [<pattern>\&...]
42 \fIgit tag\fR \-v [\-\-format=<format>] <tagname>\&...
43 .fi
44 .sp
45 .SH "DESCRIPTION"
46 .sp
47 Add a tag reference in \fBrefs/tags/\fR, unless \fB\-d/\-l/\-v\fR is given to delete, list or verify tags\&.
48 .sp
49 Unless \fB\-f\fR is given, the named tag must not yet exist\&.
50 .sp
51 If one of \fB\-a\fR, \fB\-s\fR, or \fB\-u <key\-id>\fR is passed, the command creates a \fItag\fR object, and requires a tag message\&. Unless \fB\-m <msg>\fR or \fB\-F <file>\fR is given, an editor is started for the user to type in the tag message\&.
52 .sp
53 If \fB\-m <msg>\fR or \fB\-F <file>\fR is given and \fB\-a\fR, \fB\-s\fR, and \fB\-u <key\-id>\fR are absent, \fB\-a\fR is implied\&.
54 .sp
55 Otherwise, a tag reference that points directly at the given object (i\&.e\&., a lightweight tag) is created\&.
56 .sp
57 A GnuPG signed tag object will be created when \fB\-s\fR or \fB\-u <key\-id>\fR is used\&. When \fB\-u <key\-id>\fR is not used, the committer identity for the current user is used to find the GnuPG key for signing\&. The configuration variable \fBgpg\&.program\fR is used to specify custom GnuPG binary\&.
58 .sp
59 Tag objects (created with \fB\-a\fR, \fB\-s\fR, or \fB\-u\fR) are called "annotated" tags; they contain a creation date, the tagger name and e\-mail, a tagging message, and an optional GnuPG signature\&. Whereas a "lightweight" tag is simply a name for an object (usually a commit object)\&.
60 .sp
61 Annotated tags are meant for release while lightweight tags are meant for private or temporary object labels\&. For this reason, some git commands for naming objects (like \fBgit describe\fR) will ignore lightweight tags by default\&.
62 .SH "OPTIONS"
63 .PP
64 \-a, \-\-annotate
65 .RS 4
66 Make an unsigned, annotated tag object
67 .RE
68 .PP
69 \-s, \-\-sign
70 .RS 4
71 Make a GPG\-signed tag, using the default e\-mail address\(cqs key\&. The default behavior of tag GPG\-signing is controlled by
72 \fBtag\&.gpgSign\fR
73 configuration variable if it exists, or disabled otherwise\&. See
74 \fBgit-config\fR(1)\&.
75 .RE
76 .PP
77 \-\-no\-sign
78 .RS 4
79 Override
80 \fBtag\&.gpgSign\fR
81 configuration variable that is set to force each and every tag to be signed\&.
82 .RE
83 .PP
84 \-u <key\-id>, \-\-local\-user=<key\-id>
85 .RS 4
86 Make a GPG\-signed tag, using the given key\&.
87 .RE
88 .PP
89 \-f, \-\-force
90 .RS 4
91 Replace an existing tag with the given name (instead of failing)
92 .RE
93 .PP
94 \-d, \-\-delete
95 .RS 4
96 Delete existing tags with the given names\&.
97 .RE
98 .PP
99 \-v, \-\-verify
100 .RS 4
101 Verify the GPG signature of the given tag names\&.
104 \-n<num>
105 .RS 4
106 <num> specifies how many lines from the annotation, if any, are printed when using \-l\&. Implies
107 \fB\-\-list\fR\&.
109 The default is not to print any annotation lines\&. If no number is given to
110 \fB\-n\fR, only the first line is printed\&. If the tag is not annotated, the commit message is displayed instead\&.
113 \-l, \-\-list
114 .RS 4
115 List tags\&. With optional
116 \fB<pattern>\&.\&.\&.\fR, e\&.g\&.
117 \fBgit tag \-\-list \*(Aqv\-*\*(Aq\fR, list only the tags that match the pattern(s)\&.
119 Running "git tag" without arguments also lists all tags\&. The pattern is a shell wildcard (i\&.e\&., matched using fnmatch(3))\&. Multiple patterns may be given; if any of them matches, the tag is shown\&.
121 This option is implicitly supplied if any other list\-like option such as
122 \fB\-\-contains\fR
123 is provided\&. See the documentation for each of those options for details\&.
126 \-\-sort=<key>
127 .RS 4
128 Sort based on the key given\&. Prefix
129 \fB\-\fR
130 to sort in descending order of the value\&. You may use the \-\-sort=<key> option multiple times, in which case the last key becomes the primary key\&. Also supports "version:refname" or "v:refname" (tag names are treated as versions)\&. The "version:refname" sort order can also be affected by the "versionsort\&.suffix" configuration variable\&. The keys supported are the same as those in
131 \fBgit for\-each\-ref\fR\&. Sort order defaults to the value configured for the
132 \fBtag\&.sort\fR
133 variable if it exists, or lexicographic order otherwise\&. See
134 \fBgit-config\fR(1)\&.
137 \-\-color[=<when>]
138 .RS 4
139 Respect any colors specified in the
140 \fB\-\-format\fR
141 option\&. The
142 \fB<when>\fR
143 field must be one of
144 \fBalways\fR,
145 \fBnever\fR, or
146 \fBauto\fR
148 \fB<when>\fR
149 is absent, behave as if
150 \fBalways\fR
151 was given)\&.
154 \-i, \-\-ignore\-case
155 .RS 4
156 Sorting and filtering tags are case insensitive\&.
159 \-\-omit\-empty
160 .RS 4
161 Do not print a newline after formatted refs where the format expands to the empty string\&.
164 \-\-column[=<options>], \-\-no\-column
165 .RS 4
166 Display tag listing in columns\&. See configuration variable
167 \fBcolumn\&.tag\fR
168 for option syntax\&.
169 \fB\-\-column\fR
171 \fB\-\-no\-column\fR
172 without options are equivalent to
173 \fIalways\fR
175 \fInever\fR
176 respectively\&.
178 This option is only applicable when listing tags without annotation lines\&.
181 \-\-contains [<commit>]
182 .RS 4
183 Only list tags which contain the specified commit (HEAD if not specified)\&. Implies
184 \fB\-\-list\fR\&.
187 \-\-no\-contains [<commit>]
188 .RS 4
189 Only list tags which don\(cqt contain the specified commit (HEAD if not specified)\&. Implies
190 \fB\-\-list\fR\&.
193 \-\-merged [<commit>]
194 .RS 4
195 Only list tags whose commits are reachable from the specified commit (\fBHEAD\fR
196 if not specified)\&.
199 \-\-no\-merged [<commit>]
200 .RS 4
201 Only list tags whose commits are not reachable from the specified commit (\fBHEAD\fR
202 if not specified)\&.
205 \-\-points\-at <object>
206 .RS 4
207 Only list tags of the given object (HEAD if not specified)\&. Implies
208 \fB\-\-list\fR\&.
211 \-m <msg>, \-\-message=<msg>
212 .RS 4
213 Use the given tag message (instead of prompting)\&. If multiple
214 \fB\-m\fR
215 options are given, their values are concatenated as separate paragraphs\&. Implies
216 \fB\-a\fR
217 if none of
218 \fB\-a\fR,
219 \fB\-s\fR, or
220 \fB\-u <key\-id>\fR
221 is given\&.
224 \-F <file>, \-\-file=<file>
225 .RS 4
226 Take the tag message from the given file\&. Use
227 \fI\-\fR
228 to read the message from the standard input\&. Implies
229 \fB\-a\fR
230 if none of
231 \fB\-a\fR,
232 \fB\-s\fR, or
233 \fB\-u <key\-id>\fR
234 is given\&.
237 \-e, \-\-edit
238 .RS 4
239 The message taken from file with
240 \fB\-F\fR
241 and command line with
242 \fB\-m\fR
243 are usually used as the tag message unmodified\&. This option lets you further edit the message taken from these sources\&.
246 \-\-cleanup=<mode>
247 .RS 4
248 This option sets how the tag message is cleaned up\&. The
249 \fI<mode>\fR
250 can be one of
251 \fIverbatim\fR,
252 \fIwhitespace\fR
254 \fIstrip\fR\&. The
255 \fIstrip\fR
256 mode is default\&. The
257 \fIverbatim\fR
258 mode does not change message at all,
259 \fIwhitespace\fR
260 removes just leading/trailing whitespace lines and
261 \fIstrip\fR
262 removes both whitespace and commentary\&.
265 \-\-create\-reflog
266 .RS 4
267 Create a reflog for the tag\&. To globally enable reflogs for tags, see
268 \fBcore\&.logAllRefUpdates\fR
270 \fBgit-config\fR(1)\&. The negated form
271 \fB\-\-no\-create\-reflog\fR
272 only overrides an earlier
273 \fB\-\-create\-reflog\fR, but currently does not negate the setting of
274 \fBcore\&.logAllRefUpdates\fR\&.
277 \-\-format=<format>
278 .RS 4
279 A string that interpolates
280 \fB%(fieldname)\fR
281 from a tag ref being shown and the object it points at\&. The format is the same as that of
282 \fBgit-for-each-ref\fR(1)\&. When unspecified, defaults to
283 \fB%(refname:strip=2)\fR\&.
286 <tagname>
287 .RS 4
288 The name of the tag to create, delete, or describe\&. The new tag name must pass all checks defined by
289 \fBgit-check-ref-format\fR(1)\&. Some of these checks may restrict the characters allowed in a tag name\&.
292 <commit>, <object>
293 .RS 4
294 The object that the new tag will refer to, usually a commit\&. Defaults to HEAD\&.
296 .SH "CONFIGURATION"
298 By default, \fIgit tag\fR in sign\-with\-default mode (\-s) will use your committer identity (of the form \fBYour Name <your@email\&.address>\fR) to find a key\&. If you want to use a different default key, you can specify it in the repository configuration as follows:
300 .if n \{\
301 .RS 4
304 [user]
305     signingKey = <gpg\-key\-id>
307 .if n \{\
312 \fBpager\&.tag\fR is only respected when listing tags, i\&.e\&., when \fB\-l\fR is used or implied\&. The default is to use a pager\&. See \fBgit-config\fR(1)\&.
313 .SH "DISCUSSION"
314 .SS "On Re\-tagging"
316 What should you do when you tag a wrong commit and you would want to re\-tag?
318 If you never pushed anything out, just re\-tag it\&. Use "\-f" to replace the old one\&. And you\(cqre done\&.
320 But if you have pushed things out (or others could just read your repository directly), then others will have already seen the old tag\&. In that case you can do one of two things:
322 .RS 4
323 .ie n \{\
324 \h'-04' 1.\h'+01'\c
326 .el \{\
327 .sp -1
328 .IP "  1." 4.2
330 The sane thing\&. Just admit you screwed up, and use a different name\&. Others have already seen one tag\-name, and if you keep the same name, you may be in the situation that two people both have "version X", but they actually have
331 \fIdifferent\fR
332 "X"\*(Aqs\&. So just call it "X\&.1" and be done with it\&.
335 .RS 4
336 .ie n \{\
337 \h'-04' 2.\h'+01'\c
339 .el \{\
340 .sp -1
341 .IP "  2." 4.2
343 The insane thing\&. You really want to call the new version "X" too,
344 \fIeven though\fR
345 others have already seen the old one\&. So just use
346 \fIgit tag \-f\fR
347 again, as if you hadn\(cqt already published the old one\&.
350 However, Git does \fBnot\fR (and it should not) change tags behind users back\&. So if somebody already got the old tag, doing a \fIgit pull\fR on your tree shouldn\(cqt just make them overwrite the old one\&.
352 If somebody got a release tag from you, you cannot just change the tag for them by updating your own one\&. This is a big security issue, in that people MUST be able to trust their tag\-names\&. If you really want to do the insane thing, you need to just fess up to it, and tell people that you messed up\&. You can do that by making a very public announcement saying:
354 .if n \{\
355 .RS 4
358 Ok, I messed up, and I pushed out an earlier version tagged as X\&. I
359 then fixed something, and retagged the *fixed* tree as X again\&.
361 If you got the wrong tag, and want the new one, please delete
362 the old one and fetch the new one by doing:
364         git tag \-d X
365         git fetch origin tag X
367 to get my updated tag\&.
369 You can test which tag you have by doing
371         git rev\-parse X
373 which should return 0123456789abcdef\&.\&. if you have the new version\&.
375 Sorry for the inconvenience\&.
377 .if n \{\
382 Does this seem a bit complicated? It \fBshould\fR be\&. There is no way that it would be correct to just "fix" it automatically\&. People need to know that their tags might have been changed\&.
383 .SS "On Automatic following"
385 If you are following somebody else\(cqs tree, you are most likely using remote\-tracking branches (eg\&. \fBrefs/remotes/origin/master\fR)\&. You usually want the tags from the other end\&.
387 On the other hand, if you are fetching because you would want a one\-shot merge from somebody else, you typically do not want to get tags from there\&. This happens more often for people near the toplevel but not limited to them\&. Mere mortals when pulling from each other do not necessarily want to automatically get private anchor point tags from the other person\&.
389 Often, "please pull" messages on the mailing list just provide two pieces of information: a repo URL and a branch name; this is designed to be easily cut&pasted at the end of a \fIgit fetch\fR command line:
391 .if n \{\
392 .RS 4
395 Linus, please pull from
397         git://git\&.\&.\&.\&./proj\&.git master
399 to get the following updates\&.\&.\&.
401 .if n \{\
406 becomes:
408 .if n \{\
409 .RS 4
412 $ git pull git://git\&.\&.\&.\&./proj\&.git master
414 .if n \{\
419 In such a case, you do not want to automatically follow the other person\(cqs tags\&.
421 One important aspect of Git is its distributed nature, which largely means there is no inherent "upstream" or "downstream" in the system\&. On the face of it, the above example might seem to indicate that the tag namespace is owned by the upper echelon of people and that tags only flow downwards, but that is not the case\&. It only shows that the usage pattern determines who are interested in whose tags\&.
423 A one\-shot pull is a sign that a commit history is now crossing the boundary between one circle of people (e\&.g\&. "people who are primarily interested in the networking part of the kernel") who may have their own set of tags (e\&.g\&. "this is the third release candidate from the networking group to be proposed for general consumption with 2\&.6\&.21 release") to another circle of people (e\&.g\&. "people who integrate various subsystem improvements")\&. The latter are usually not interested in the detailed tags used internally in the former group (that is what "internal" means)\&. That is why it is desirable not to follow tags automatically in this case\&.
425 It may well be that among networking people, they may want to exchange the tags internal to their group, but in that workflow they are most likely tracking each other\(cqs progress by having remote\-tracking branches\&. Again, the heuristic to automatically follow such tags is a good thing\&.
426 .SS "On Backdating Tags"
428 If you have imported some changes from another VCS and would like to add tags for major releases of your work, it is useful to be able to specify the date to embed inside of the tag object; such data in the tag object affects, for example, the ordering of tags in the gitweb interface\&.
430 To set the date used in future tag objects, set the environment variable GIT_COMMITTER_DATE (see the later discussion of possible values; the most common form is "YYYY\-MM\-DD HH:MM")\&.
432 For example:
434 .if n \{\
435 .RS 4
438 $ GIT_COMMITTER_DATE="2006\-10\-02 10:31" git tag \-s v1\&.0\&.1
440 .if n \{\
444 .SH "DATE FORMATS"
446 The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
448 Git internal format
449 .RS 4
450 It is
451 \fB<unix\-timestamp> <time\-zone\-offset>\fR, where
452 \fB<unix\-timestamp>\fR
453 is the number of seconds since the UNIX epoch\&.
454 \fB<time\-zone\-offset>\fR
455 is a positive or negative offset from UTC\&. For example CET (which is 1 hour ahead of UTC) is
456 \fB+0100\fR\&.
459 RFC 2822
460 .RS 4
461 The standard email format as described by RFC 2822, for example
462 \fBThu, 07 Apr 2005 22:13:13 +0200\fR\&.
465 ISO 8601
466 .RS 4
467 Time and date specified by the ISO 8601 standard, for example
468 \fB2005\-04\-07T22:13:13\fR\&. The parser accepts a space instead of the
469 \fBT\fR
470 character as well\&. Fractional parts of a second will be ignored, for example
471 \fB2005\-04\-07T22:13:13\&.019\fR
472 will be treated as
473 \fB2005\-04\-07T22:13:13\fR\&.
474 .if n \{\
477 .RS 4
478 .it 1 an-trap
479 .nr an-no-space-flag 1
480 .nr an-break-flag 1
482 .ps +1
483 \fBNote\fR
484 .ps -1
486 In addition, the date part is accepted in the following formats:
487 \fBYYYY\&.MM\&.DD\fR,
488 \fBMM/DD/YYYY\fR
490 \fBDD\&.MM\&.YYYY\fR\&.
491 .sp .5v
494 .SH "FILES"
496 \fB$GIT_DIR/TAG_EDITMSG\fR
497 .RS 4
498 This file contains the message of an in\-progress annotated tag\&. If
499 \fBgit tag\fR
500 exits due to an error before creating an annotated tag then the tag message that has been provided by the user in an editor session will be available in this file, but may be overwritten by the next invocation of
501 \fBgit tag\fR\&.
503 .SH "NOTES"
505 When combining multiple \fB\-\-contains\fR and \fB\-\-no\-contains\fR filters, only references that contain at least one of the \fB\-\-contains\fR commits and contain none of the \fB\-\-no\-contains\fR commits are shown\&.
507 When combining multiple \fB\-\-merged\fR and \fB\-\-no\-merged\fR filters, only references that are reachable from at least one of the \fB\-\-merged\fR commits and from none of the \fB\-\-no\-merged\fR commits are shown\&.
508 .SH "SEE ALSO"
510 \fBgit-check-ref-format\fR(1)\&. \fBgit-config\fR(1)\&.
511 .SH "GIT"
513 Part of the \fBgit\fR(1) suite