X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-tag.txt;h=e8892bb0b05884c379b9b32548c799bd0aca6f1b;hb=72fdfb50f721460e4cdff16fbe9c72d4ce6c668c;hp=95de436c10d3b43b5c5eac719938005b11ead739;hpb=302ebfe52192fff9a2c1c612dff22325fd073acc;p=git.git diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index 95de436c..e8892bb0 100644 --- a/Documentation/git-tag.txt +++ b/Documentation/git-tag.txt @@ -23,7 +23,7 @@ creates a 'tag' object, and requires the tag message. Unless in the tag message. Otherwise just the SHA1 object name of the commit object is -written (i.e. an lightweight tag). +written (i.e. a lightweight tag). A GnuPG signed tag object will be created when `-s` or `-u ` is used. When `-u ` is not used, the @@ -32,6 +32,26 @@ GnuPG key for signing. `-d ` deletes the tag. +OPTIONS +------- +-a:: + Make an unsigned, annotated tag object + +-s:: + Make a GPG-signed tag, using the default e-mail address's key + +-u :: + Make a GPG-signed tag, using the given key + +-f:: + Replace an existing tag with the given name (instead of failing) + +-d:: + Delete an existing tag with the given name + +-m :: + Use the given tag message (instead of prompting) + Author ------