Merge http://www.kernel.org/pub/scm/gitk/gitk
[git.git] / Documentation / git-tag.txt
1 git-tag(1)
2 ==========
3 v0.99.4, Aug 2005
4
5 NAME
6 ----
7 git-tag -  Create a tag object signed with GPG
8
9
10
11 SYNOPSIS
12 --------
13 'git-tag' [-s | -a] [-f] <name>
14
15 DESCRIPTION
16 -----------
17 Adds a "tag" reference in .git/refs/tags/
18
19 Unless "-f" is given, the tag must not yet exist in ".git/refs/tags"
20
21 If "-s" or "-a" is passed, the user will be prompted for a tag message.
22 and a tag object is created.  Otherwise just the SHA1 object
23 name of the commit object is written.
24
25 A GnuPG signed tag object will be created when "-s" is used.
26
27
28 Author
29 ------
30 Written by Linus Torvalds <torvalds@osdl.org>,
31 Junio C Hamano <junkio@cox.net> and Chris Wright <chrisw@osdl.org>.
32
33 Documentation
34 --------------
35 Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
36
37 GIT
38 ---
39 Part of the gitlink:git[7] suite