diff options
author | Santi Béjar <sbejar@gmail.com> | 2007-01-03 13:59:00 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-03 12:31:43 -0800 |
commit | 0bc72abdb0440f003169211f01b8f3ffb83291e4 (patch) | |
tree | 407f1ea2803f2f4f637bfa7b59dcd44d8abc8c8b /Documentation | |
parent | Refactor print-functions in builtin-branch (diff) | |
download | tgif-0bc72abdb0440f003169211f01b8f3ffb83291e4.tar.xz |
git-tag: add flag to verify a tag
This way "git tag -v $tag" is the UI for git-verify-tag.
Signed-off-by: Santi Béjar <sbejar@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-tag.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index 48b82b86f8..80bece0775 100644 --- a/Documentation/git-tag.txt +++ b/Documentation/git-tag.txt @@ -9,7 +9,7 @@ git-tag - Create a tag object signed with GPG SYNOPSIS -------- [verse] -'git-tag' [-a | -s | -u <key-id>] [-f | -d] [-m <msg> | -F <file>] +'git-tag' [-a | -s | -u <key-id>] [-f | -d | -v] [-m <msg> | -F <file>] <name> [<head>] 'git-tag' -l [<pattern>] @@ -35,6 +35,8 @@ GnuPG key for signing. `-d <tag>` deletes the tag. +`-v <tag>` verifies the gpg signature of the tag. + `-l <pattern>` lists tags that match the given pattern (or all if no pattern is given). @@ -55,6 +57,9 @@ OPTIONS -d:: Delete an existing tag with the given name +-v:: + Verify the gpg signature of given the tag + -l <pattern>:: List tags that match the given pattern (or all if no pattern is given). |