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