From: Santi Béjar Date: Wed, 3 Jan 2007 12:59:00 +0000 (+0100) Subject: git-tag: add flag to verify a tag X-Git-Tag: v1.5.0-rc1~99 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0bc72abdb0440f003169211f01b8f3ffb83291e4;p=git.git 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 Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt index 48b82b86f..80bece077 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 ] [-f | -d] [-m | -F ] +'git-tag' [-a | -s | -u ] [-f | -d | -v] [-m | -F ] [] 'git-tag' -l [] @@ -35,6 +35,8 @@ GnuPG key for signing. `-d ` deletes the tag. +`-v ` verifies the gpg signature of the tag. + `-l ` 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 :: List tags that match the given pattern (or all if no pattern is given). diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh index 06c42b042..1de14ea82 100755 --- a/generate-cmdlist.sh +++ b/generate-cmdlist.sh @@ -37,7 +37,6 @@ show show-branch status tag -verify-tag EOF while read cmd do diff --git a/git-tag.sh b/git-tag.sh index e1bfa82f1..ecb9100e4 100755 --- a/git-tag.sh +++ b/git-tag.sh @@ -1,7 +1,7 @@ #!/bin/sh # Copyright (c) 2005 Linus Torvalds -USAGE='-l [] | [-a | -s | -u ] [-f | -d] [-m ] []' +USAGE='-l [] | [-a | -s | -u ] [-f | -d | -v] [-m ] []' SUBDIRECTORY_OK='Yes' . git-sh-setup @@ -12,6 +12,7 @@ force= message= username= list= +verify= while case "$#" in 0) break ;; esac do case "$1" in @@ -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 ;;