summaryrefslogtreecommitdiff
path: root/Documentation/git-tag-script.txt
blob: 2df396ef89993bab326afe43d2778c57ff3d8fab (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
git-tag-script(1)
=================
v0.1, May 2005
 
NAME
----
git-tag-script -  Create a tag object signed with GPG
 
 
 
SYNOPSIS
--------
'git-tag-script' [-s | -a] [-f] <name>
 
DESCRIPTION
-----------
Adds a "tag" reference in .git/refs/tags/
 
Unless "-f" is given, the tag must not yet exist in ".git/refs/tags"
 
If "-s" or "-a" is passed, the user will be prompted for a tag message.
and a tag object is created.  Otherwise just the SHA1 object
name of the commit object is written.
 
A GnuPG signed tag object will be created when "-s" is used.
 
 
Author
------
Written by Linus Torvalds <torvalds@osdl.org>
 
Documentation
--------------
Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>.
 
GIT
---
Part of the link:git.html[git] suite