mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 12:45:59 +02:00
git-verify-tag: add page (#6139)
This commit is contained in:
parent
2359da0153
commit
cc755655a3
1 changed files with 17 additions and 0 deletions
17
pages/common/git-verify-tag.md
Normal file
17
pages/common/git-verify-tag.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# 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 ...}} --verbose`
|
||||
|
||||
- Check tags for a GPG signature and print the raw details:
|
||||
|
||||
`git verify-tag {{tag1 optional_tag2 ...}} --raw`
|
Loading…
Add table
Reference in a new issue