mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
580 B
Plaintext
23 lines
580 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# git verify-tag
|
|
|
|
> Check for GPG verification of tags.
|
|
> If a tag wasn't signed, an error will occur.
|
|
> More information: <https://git-scm.com/docs/git-verify-tag>.
|
|
|
|
- Check tags for a GPG signature:
|
|
|
|
`git verify-tag {{tag1 optional_tag2 ...}}`
|
|
|
|
- Check tags for a GPG signature and show details for each tag:
|
|
|
|
`git verify-tag {{tag1 optional_tag2 ...}} {{[-v|--verbose]}}`
|
|
|
|
- Check tags for a GPG signature and print the raw details:
|
|
|
|
`git verify-tag {{tag1 optional_tag2 ...}} --raw`
|