メモ
Git クライアントが既定でコミットに署名するように構成されている場合、GitHub Desktop は、コミットの署名のみをサポートします。
-
タグに署名するには、
-sコマンドにgit tagを追加します。$ git tag -s MYTAG # Creates a signed tag -
`git tag -v [tag-name]` を実行して署名されたタグを検証します。$ git tag -v MYTAG # Verifies the signed tag
参考資料
-
[AUTOTITLE](/repositories/releasing-projects-on-github/viewing-your-repositorys-releases-and-tags) -
[AUTOTITLE](/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key) -
[AUTOTITLE](/authentication/managing-commit-signature-verification/associating-an-email-with-your-gpg-key) -
[AUTOTITLE](/authentication/managing-commit-signature-verification/signing-commits)