git-verify-tag
Verify GPG signatures of tags
TLDR
Verify signed tag
$ git verify-tag [tag]
Verify multiple tags$ git verify-tag [tag1] [tag2]
Show raw signature$ git verify-tag --raw [tag]
Verbose output$ git verify-tag -v [tag]
SYNOPSIS
git verify-tag [options] tag...
DESCRIPTION
git verify-tag checks GPG signatures of tags. It verifies that tags were signed with valid GPG keys, confirming the authenticity of tagged releases.
This is commonly used to verify the integrity of release tags in security-sensitive workflows.
PARAMETERS
-v, --verbose
Print tag contents.--raw
Print raw signature.--format format
Format output.
SEE ALSO
git-tag(1), git-verify-commit(1)
