Code

Make "git tag" create both simple and signed tags
authorLinus Torvalds <torvalds@g5.osdl.org>
Sat, 23 Jul 2005 22:21:22 +0000 (15:21 -0700)
committerLinus Torvalds <torvalds@g5.osdl.org>
Sat, 23 Jul 2005 22:21:22 +0000 (15:21 -0700)
commitd727782eaf85d7bbf49e666776deadd3fee85715
treed763af06625117ddff266e8bb0a2bb62e32a7d02
parent1d8fa411e04130e175eae7a41e0918e4be7797a5
Make "git tag" create both simple and signed tags

A simple tag is just a direct pointer to the object, while a signed tag
is a pointer to a "tag object" that has a pgp signature and points to
the object we tagged.

Use "git tag -s tagname" to create a signed tag.

The "-f" flag overwrites any previous tag of that name (useful if you
update a tag to point to a newer version for things like "latest" etc
tags that aren't necessarily static versions).
git-tag-script