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

git-verify-tag.sh - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 156c75bb3e4fb0c46ed9bff67b3fb48d795b41fb (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
. git-sh-setup || 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