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