Skip to content

Commit

Permalink
git-tag: add flag to verify a tag
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Santi Béjar authored and Junio C Hamano committed Jan 3, 2007
1 parent af0e4ac commit 0bc72ab
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Documentation/git-tag.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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>]

Expand All @@ -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).

Expand All @@ -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).

Expand Down
1 change: 0 additions & 1 deletion generate-cmdlist.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ show
show-branch
status
tag
verify-tag
EOF
while read cmd
do
Expand Down
11 changes: 10 additions & 1 deletion git-tag.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
# Copyright (c) 2005 Linus Torvalds

USAGE='-l [<pattern>] | [-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <tagname> [<head>]'
USAGE='-l [<pattern>] | [-a | -s | -u <key-id>] [-f | -d | -v] [-m <msg>] <tagname> [<head>]'
SUBDIRECTORY_OK='Yes'
. git-sh-setup

Expand All @@ -12,6 +12,7 @@ force=
message=
username=
list=
verify=
while case "$#" in 0) break ;; esac
do
case "$1" in
Expand Down Expand Up @@ -69,6 +70,14 @@ do
echo "Deleted tag $tag_name."
exit $?
;;
-v)
shift
tag_name="$1"
tag=$(git-show-ref --verify --hash -- "refs/tags/$tag_name") ||
die "Seriously, what tag are you talking about?"
git-verify-tag -v "$tag"
exit $?
;;
-*)
usage
;;
Expand Down

0 comments on commit 0bc72ab

Please sign in to comment.