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: ed4c89396841d8292185b0504ef62ef36007f354 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
. git-sh-setup || die "Not a git archive"

type="$(git-cat-file -t "$1" 2>/dev/null)" ||
	die "$1: no such object."

test "$type" = tag ||
	die "$1: cannot verify a non-tag object of type $type."

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