* [PATCH] git-tag: add flag to verify a tag
@ 2007-01-03 12:59 Santi Béjar
2007-01-03 16:25 ` Junio C Hamano
2007-01-03 23:17 ` [PATCH take 2] " Santi Béjar
0 siblings, 2 replies; 4+ messages in thread
From: Santi Béjar @ 2007-01-03 12:59 UTC (permalink / raw)
To: Git Mailing List
This way "git tag -v $tag" is the UI for git-verify-tag.
---
Documentation/git-tag.txt | 7 ++++++-
generate-cmdlist.sh | 1 -
git-tag.sh | 10 +++++++++-
3 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 48b82b8..80bece0 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).
diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh
index 06c42b0..1de14ea 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 e1bfa82..c9e1180 100755
--- a/git-tag.sh
+++ b/git-tag.sh
@@ -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
@@ -12,6 +12,7 @@ force=
message=
username=
list=
+verify=
while case "$#" in 0) break ;; esac
do
case "$1" in
@@ -69,6 +70,13 @@ 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
;;
--
1.5.0.rc0.g91ea
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] git-tag: add flag to verify a tag
2007-01-03 12:59 [PATCH] git-tag: add flag to verify a tag Santi Béjar
@ 2007-01-03 16:25 ` Junio C Hamano
2007-01-03 16:36 ` Santi Béjar
2007-01-03 23:17 ` [PATCH take 2] " Santi Béjar
1 sibling, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2007-01-03 16:25 UTC (permalink / raw)
To: Santi Béjar; +Cc: git
Santi Béjar <sbejar@gmail.com> writes:
> This way "git tag -v $tag" is the UI for git-verify-tag.
> ---
> Documentation/git-tag.txt | 7 ++++++-
> ...
Signoffs?
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] git-tag: add flag to verify a tag
2007-01-03 16:25 ` Junio C Hamano
@ 2007-01-03 16:36 ` Santi Béjar
0 siblings, 0 replies; 4+ messages in thread
From: Santi Béjar @ 2007-01-03 16:36 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
On 1/3/07, Junio C Hamano <junkio@cox.net> wrote:
> Santi Béjar <sbejar@gmail.com> writes:
>
> > This way "git tag -v $tag" is the UI for git-verify-tag.
> > ---
> > Documentation/git-tag.txt | 7 ++++++-
> > ...
>
>
> Signoffs?
Forgotten, long time since the last patch :-|
Signed-off-by: Santi Béjar <sbejar@gmail.com>
Santi
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH take 2] git-tag: add flag to verify a tag
2007-01-03 12:59 [PATCH] git-tag: add flag to verify a tag Santi Béjar
2007-01-03 16:25 ` Junio C Hamano
@ 2007-01-03 23:17 ` Santi Béjar
1 sibling, 0 replies; 4+ messages in thread
From: Santi Béjar @ 2007-01-03 23:17 UTC (permalink / raw)
To: Git Mailing List
This way "git tag -v $tag" is the UI for git-verify-tag.
Signed-off-by: Santi Béjar <sbejar@gmail.com>
---
Hi *,
But maybe the -v flag should give a similar output as:
$ git branch -v
Then this flag could be -c for check?
This version has a syntax fix (sorry) and a typo fix.
Documentation/git-tag.txt | 7 ++++++-
generate-cmdlist.sh | 1 -
git-tag.sh | 11 ++++++++++-
3 files changed, 16 insertions(+), 3 deletions(-)
diff --git a/Documentation/git-tag.txt b/Documentation/git-tag.txt
index 48b82b8..5cf114d 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 the given tag
+
-l <pattern>::
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 06c42b0..1de14ea 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 e1bfa82..c3e4e15 100755
--- a/git-tag.sh
+++ b/git-tag.sh
@@ -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
@@ -69,6 +69,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
;;
--
1.5.0.rc0.g1eb3
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-01-03 23:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-03 12:59 [PATCH] git-tag: add flag to verify a tag Santi Béjar
2007-01-03 16:25 ` Junio C Hamano
2007-01-03 16:36 ` Santi Béjar
2007-01-03 23:17 ` [PATCH take 2] " Santi Béjar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).