Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git-verify-tag-script - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6eb650be7a2c0449b3d6bad0a457b085db4cbe09 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
. git-sh-setup-script || die "Not a git archive"

tag=$(git-rev-parse $1) || exit 1

git-cat-file tag $tag > .tmp-vtag || exit 1
cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
rm -f .tmp-vtag