From cc755655a3bce30cd342654cc1f2be5ef952f788 Mon Sep 17 00:00:00 2001 From: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Date: Tue, 29 Jun 2021 19:34:06 +0100 Subject: [PATCH] git-verify-tag: add page (#6139) --- pages/common/git-verify-tag.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/git-verify-tag.md diff --git a/pages/common/git-verify-tag.md b/pages/common/git-verify-tag.md new file mode 100644 index 0000000000..25d9e1063b --- /dev/null +++ b/pages/common/git-verify-tag.md @@ -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: . + +- 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`