git-verify-tag-scripton commit [PATCH] Run Ispell through git.txt (90933ef)
   1#!/bin/sh
   2. git-sh-setup-script || die "Not a git archive"
   3
   4tag=$(git-rev-parse $1) || exit 1
   5
   6git-cat-file tag $tag > .tmp-vtag || exit 1
   7cat .tmp-vtag | sed '/-----BEGIN PGP/Q' | gpg --verify .tmp-vtag - || exit 1
   8rm -f .tmp-vtag