1git-tag-script(1) 2================= 3v0.99.4, Aug 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>, 31Junio C Hamano <junkio@cox.net> and Chris Wright <chrisw@osdl.org>. 32 33Documentation 34-------------- 35Documentation by David Greaves, Junio C Hamano and the git-list <git@vger.kernel.org>. 36 37GIT 38--- 39Part of the link:git.html[git] suite