]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-mktag.txt
Merge git://git.bogomips.org/git-svn
[thirdparty/git.git] / Documentation / git-mktag.txt
CommitLineData
2cf565c5
DG
1git-mktag(1)
2============
2cf565c5
DG
3
4NAME
5----
6git-mktag - Creates a tag object
7
8
9SYNOPSIS
10--------
b1889c36 11'git mktag' < signature_file
2cf565c5
DG
12
13DESCRIPTION
14-----------
c1bdacf9
DG
15Reads a tag contents on standard input and creates a tag object
16that can also be used to sign other objects.
17
18The output is the new tag's <object> identifier.
19
20Tag Format
21----------
6cfec036 22A tag signature file has a very simple fixed format: four lines of
c1bdacf9
DG
23
24 object <sha1>
25 type <typename>
26 tag <tagname>
6cfec036 27 tagger <tagger>
c1bdacf9 28
6cfec036
JH
29followed by some 'optional' free-form message (some tags created
30by older git may not have `tagger` line). The message, when
31exists, is separated by a blank line from the header. The
32message part may contain a signature that git itself doesn't
33care about, but that can be verified with gpg.
2cf565c5 34
2cf565c5
DG
35GIT
36---
9e1f0a85 37Part of the linkgit:git[1] suite