class Git::Commands::Tag::Verify

Implements the ‘git tag –verify` command for verifying tag signatures

This command verifies the cryptographic signature of the given tag(s). It requires that the tags were signed with GPG or another supported signing backend.

@example Verify a single tag

verify = Git::Commands::Tag::Verify.new(execution_context)
verify.call('v1.0.0')

@example Verify multiple tags

verify = Git::Commands::Tag::Verify.new(execution_context)
verify.call('v1.0.0', 'v2.0.0')

@example Verify with custom format output

verify = Git::Commands::Tag::Verify.new(execution_context)
verify.call('v1.0.0', format: '%(refname:short) %(contents:subject)')

@note ‘arguments` block audited against git-scm.com/docs/git-tag/2.53.0

@see Git::Commands::Tag

@see git-scm.com/docs/git-tag git-tag

@api private