summaryrefslogtreecommitdiffstats
path: root/man1/git-tag.1
blob: 119b262a62b8418833a63fd52001021a3b1f5df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
'\" t
.\"     Title: git-tag
.\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
.\"      Date: 2024-04-30
.\"    Manual: Git Manual
.\"    Source: Git 2.45.0.31.gd4cc1ec35f
.\"  Language: English
.\"
.TH "GIT\-TAG" "1" "2024\-04\-30" "Git 2\&.45\&.0\&.31\&.gd4cc1ec" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.\" http://bugs.debian.org/507673
.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.ie \n(.g .ds Aq \(aq
.el       .ds Aq '
.\" -----------------------------------------------------------------
.\" * set default formatting
.\" -----------------------------------------------------------------
.\" disable hyphenation
.nh
.\" disable justification (adjust text to left margin only)
.ad l
.\" -----------------------------------------------------------------
.\" * MAIN CONTENT STARTS HERE *
.\" -----------------------------------------------------------------
.SH "NAME"
git-tag \- Create, list, delete or verify a tag object signed with GPG
.SH "SYNOPSIS"
.sp
.nf
\fIgit tag\fR [\-a | \-s | \-u <key\-id>] [\-f] [\-m <msg> | \-F <file>] [\-e]
        <tagname> [<commit> | <object>]
\fIgit tag\fR \-d <tagname>\&...
\fIgit tag\fR [\-n[<num>]] \-l [\-\-contains <commit>] [\-\-no\-contains <commit>]
        [\-\-points\-at <object>] [\-\-column[=<options>] | \-\-no\-column]
        [\-\-create\-reflog] [\-\-sort=<key>] [\-\-format=<format>]
        [\-\-merged <commit>] [\-\-no\-merged <commit>] [<pattern>\&...]
\fIgit tag\fR \-v [\-\-format=<format>] <tagname>\&...
.fi
.sp
.SH "DESCRIPTION"
.sp
Add a tag reference in \fBrefs/tags/\fR, unless \fB\-d/\-l/\-v\fR is given to delete, list or verify tags\&.
.sp
Unless \fB\-f\fR is given, the named tag must not yet exist\&.
.sp
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\&.
.sp
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\&.
.sp
Otherwise, a tag reference that points directly at the given object (i\&.e\&., a lightweight tag) is created\&.
.sp
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\&.
.sp
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)\&.
.sp
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\&.
.SH "OPTIONS"
.PP
\-a, \-\-annotate
.RS 4
Make an unsigned, annotated tag object
.RE
.PP
\-s, \-\-sign
.RS 4
Make a GPG\-signed tag, using the default e\-mail address\(cqs key\&. The default behavior of tag GPG\-signing is controlled by
\fBtag\&.gpgSign\fR
configuration variable if it exists, or disabled otherwise\&. See
\fBgit-config\fR(1)\&.
.RE
.PP
\-\-no\-sign
.RS 4
Override
\fBtag\&.gpgSign\fR
configuration variable that is set to force each and every tag to be signed\&.
.RE
.PP
\-u <key\-id>, \-\-local\-user=<key\-id>
.RS 4
Make a GPG\-signed tag, using the given key\&.
.RE
.PP
\-f, \-\-force
.RS 4
Replace an existing tag with the given name (instead of failing)
.RE
.PP
\-d, \-\-delete
.RS 4
Delete existing tags with the given names\&.
.RE
.PP
\-v, \-\-verify
.RS 4
Verify the GPG signature of the given tag names\&.
.RE
.PP
\-n<num>
.RS 4
<num> specifies how many lines from the annotation, if any, are printed when using \-l\&. Implies
\fB\-\-list\fR\&.
.sp
The default is not to print any annotation lines\&. If no number is given to
\fB\-n\fR, only the first line is printed\&. If the tag is not annotated, the commit message is displayed instead\&.
.RE
.PP
\-l, \-\-list
.RS 4
List tags\&. With optional
\fB<pattern>\&.\&.\&.\fR, e\&.g\&.
\fBgit tag \-\-list \*(Aqv\-*\*(Aq\fR, list only the tags that match the pattern(s)\&.
.sp
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\&.
.sp
This option is implicitly supplied if any other list\-like option such as
\fB\-\-contains\fR
is provided\&. See the documentation for each of those options for details\&.
.RE
.PP
\-\-sort=<key>
.RS 4
Sort based on the key given\&. Prefix
\fB\-\fR
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
\fBgit for\-each\-ref\fR\&. Sort order defaults to the value configured for the
\fBtag\&.sort\fR
variable if it exists, or lexicographic order otherwise\&. See
\fBgit-config\fR(1)\&.
.RE
.PP
\-\-color[=<when>]
.RS 4
Respect any colors specified in the
\fB\-\-format\fR
option\&. The
\fB<when>\fR
field must be one of
\fBalways\fR,
\fBnever\fR, or
\fBauto\fR
(if
\fB<when>\fR
is absent, behave as if
\fBalways\fR
was given)\&.
.RE
.PP
\-i, \-\-ignore\-case
.RS 4
Sorting and filtering tags are case insensitive\&.
.RE
.PP
\-\-omit\-empty
.RS 4
Do not print a newline after formatted refs where the format expands to the empty string\&.
.RE
.PP
\-\-column[=<options>], \-\-no\-column
.RS 4
Display tag listing in columns\&. See configuration variable
\fBcolumn\&.tag\fR
for option syntax\&.
\fB\-\-column\fR
and
\fB\-\-no\-column\fR
without options are equivalent to
\fIalways\fR
and
\fInever\fR
respectively\&.
.sp
This option is only applicable when listing tags without annotation lines\&.
.RE
.PP
\-\-contains [<commit>]
.RS 4
Only list tags which contain the specified commit (HEAD if not specified)\&. Implies
\fB\-\-list\fR\&.
.RE
.PP
\-\-no\-contains [<commit>]
.RS 4
Only list tags which don\(cqt contain the specified commit (HEAD if not specified)\&. Implies
\fB\-\-list\fR\&.
.RE
.PP
\-\-merged [<commit>]
.RS 4
Only list tags whose commits are reachable from the specified commit (\fBHEAD\fR
if not specified)\&.
.RE
.PP
\-\-no\-merged [<commit>]
.RS 4
Only list tags whose commits are not reachable from the specified commit (\fBHEAD\fR
if not specified)\&.
.RE
.PP
\-\-points\-at <object>
.RS 4
Only list tags of the given object (HEAD if not specified)\&. Implies
\fB\-\-list\fR\&.
.RE
.PP
\-m <msg>, \-\-message=<msg>
.RS 4
Use the given tag message (instead of prompting)\&. If multiple
\fB\-m\fR
options are given, their values are concatenated as separate paragraphs\&. Implies
\fB\-a\fR
if none of
\fB\-a\fR,
\fB\-s\fR, or
\fB\-u <key\-id>\fR
is given\&.
.RE
.PP
\-F <file>, \-\-file=<file>
.RS 4
Take the tag message from the given file\&. Use
\fI\-\fR
to read the message from the standard input\&. Implies
\fB\-a\fR
if none of
\fB\-a\fR,
\fB\-s\fR, or
\fB\-u <key\-id>\fR
is given\&.
.RE
.PP
\-e, \-\-edit
.RS 4
The message taken from file with
\fB\-F\fR
and command line with
\fB\-m\fR
are usually used as the tag message unmodified\&. This option lets you further edit the message taken from these sources\&.
.RE
.PP
\-\-cleanup=<mode>
.RS 4
This option sets how the tag message is cleaned up\&. The
\fI<mode>\fR
can be one of
\fIverbatim\fR,
\fIwhitespace\fR
and
\fIstrip\fR\&. The
\fIstrip\fR
mode is default\&. The
\fIverbatim\fR
mode does not change message at all,
\fIwhitespace\fR
removes just leading/trailing whitespace lines and
\fIstrip\fR
removes both whitespace and commentary\&.
.RE
.PP
\-\-create\-reflog
.RS 4
Create a reflog for the tag\&. To globally enable reflogs for tags, see
\fBcore\&.logAllRefUpdates\fR
in
\fBgit-config\fR(1)\&. The negated form
\fB\-\-no\-create\-reflog\fR
only overrides an earlier
\fB\-\-create\-reflog\fR, but currently does not negate the setting of
\fBcore\&.logAllRefUpdates\fR\&.
.RE
.PP
\-\-format=<format>
.RS 4
A string that interpolates
\fB%(fieldname)\fR
from a tag ref being shown and the object it points at\&. The format is the same as that of
\fBgit-for-each-ref\fR(1)\&. When unspecified, defaults to
\fB%(refname:strip=2)\fR\&.
.RE
.PP
<tagname>
.RS 4
The name of the tag to create, delete, or describe\&. The new tag name must pass all checks defined by
\fBgit-check-ref-format\fR(1)\&. Some of these checks may restrict the characters allowed in a tag name\&.
.RE
.PP
<commit>, <object>
.RS 4
The object that the new tag will refer to, usually a commit\&. Defaults to HEAD\&.
.RE
.SH "CONFIGURATION"
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
[user]
    signingKey = <gpg\-key\-id>
.fi
.if n \{\
.RE
.\}
.sp
.sp
\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)\&.
.SH "DISCUSSION"
.SS "On Re\-tagging"
.sp
What should you do when you tag a wrong commit and you would want to re\-tag?
.sp
If you never pushed anything out, just re\-tag it\&. Use "\-f" to replace the old one\&. And you\(cqre done\&.
.sp
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:
.sp
.RS 4
.ie n \{\
\h'-04' 1.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  1." 4.2
.\}
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
\fIdifferent\fR
"X"\*(Aqs\&. So just call it "X\&.1" and be done with it\&.
.RE
.sp
.RS 4
.ie n \{\
\h'-04' 2.\h'+01'\c
.\}
.el \{\
.sp -1
.IP "  2." 4.2
.\}
The insane thing\&. You really want to call the new version "X" too,
\fIeven though\fR
others have already seen the old one\&. So just use
\fIgit tag \-f\fR
again, as if you hadn\(cqt already published the old one\&.
.RE
.sp
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\&.
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
Ok, I messed up, and I pushed out an earlier version tagged as X\&. I
then fixed something, and retagged the *fixed* tree as X again\&.

If you got the wrong tag, and want the new one, please delete
the old one and fetch the new one by doing:

        git tag \-d X
        git fetch origin tag X

to get my updated tag\&.

You can test which tag you have by doing

        git rev\-parse X

which should return 0123456789abcdef\&.\&. if you have the new version\&.

Sorry for the inconvenience\&.
.fi
.if n \{\
.RE
.\}
.sp
.sp
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\&.
.SS "On Automatic following"
.sp
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\&.
.sp
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\&.
.sp
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:
.sp
.if n \{\
.RS 4
.\}
.nf
Linus, please pull from

        git://git\&.\&.\&.\&./proj\&.git master

to get the following updates\&.\&.\&.
.fi
.if n \{\
.RE
.\}
.sp
.sp
becomes:
.sp
.if n \{\
.RS 4
.\}
.nf
$ git pull git://git\&.\&.\&.\&./proj\&.git master
.fi
.if n \{\
.RE
.\}
.sp
.sp
In such a case, you do not want to automatically follow the other person\(cqs tags\&.
.sp
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\&.
.sp
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\&.
.sp
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\&.
.SS "On Backdating Tags"
.sp
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\&.
.sp
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")\&.
.sp
For example:
.sp
.if n \{\
.RS 4
.\}
.nf
$ GIT_COMMITTER_DATE="2006\-10\-02 10:31" git tag \-s v1\&.0\&.1
.fi
.if n \{\
.RE
.\}
.sp
.SH "DATE FORMATS"
.sp
The \fBGIT_AUTHOR_DATE\fR and \fBGIT_COMMITTER_DATE\fR environment variables support the following date formats:
.PP
Git internal format
.RS 4
It is
\fB<unix\-timestamp> <time\-zone\-offset>\fR, where
\fB<unix\-timestamp>\fR
is the number of seconds since the UNIX epoch\&.
\fB<time\-zone\-offset>\fR
is a positive or negative offset from UTC\&. For example CET (which is 1 hour ahead of UTC) is
\fB+0100\fR\&.
.RE
.PP
RFC 2822
.RS 4
The standard date format as described by RFC 2822, for example
\fBThu, 07 Apr 2005 22:13:13 +0200\fR\&.
.RE
.PP
ISO 8601
.RS 4
Time and date specified by the ISO 8601 standard, for example
\fB2005\-04\-07T22:13:13\fR\&. The parser accepts a space instead of the
\fBT\fR
character as well\&. Fractional parts of a second will be ignored, for example
\fB2005\-04\-07T22:13:13\&.019\fR
will be treated as
\fB2005\-04\-07T22:13:13\fR\&.
.if n \{\
.sp
.\}
.RS 4
.it 1 an-trap
.nr an-no-space-flag 1
.nr an-break-flag 1
.br
.ps +1
\fBNote\fR
.ps -1
.br
In addition, the date part is accepted in the following formats:
\fBYYYY\&.MM\&.DD\fR,
\fBMM/DD/YYYY\fR
and
\fBDD\&.MM\&.YYYY\fR\&.
.sp .5v
.RE
.RE
.SH "FILES"
.PP
\fB$GIT_DIR/TAG_EDITMSG\fR
.RS 4
This file contains the message of an in\-progress annotated tag\&. If
\fBgit tag\fR
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
\fBgit tag\fR\&.
.RE
.SH "NOTES"
.sp
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\&.
.sp
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\&.
.SH "SEE ALSO"
.sp
\fBgit-check-ref-format\fR(1)\&. \fBgit-config\fR(1)\&.
.SH "GIT"
.sp
Part of the \fBgit\fR(1) suite