Hinweis
GitHub Desktop unterstützt nur dann die Commit-Signatur, wenn dein Git-Client standardmäßig zum Signieren von Commits konfiguriert ist.
Tipp
Um Ihren Git-Client so zu konfigurieren, dass Tags für ein lokales Repository standardmäßig signiert werden, führen Sie git config tag.gpgsign truein Git-Versionen 2.23.0 und höher aus. Um alle Tags standardmäßig in einem lokalen Repository auf Ihrem Computer zu signieren, führen Sie git config --global tag.gpgsign true aus.
-
Zum Signieren eines Tags fügen Sie
-sIhremgit tag-Befehl hinzu.$ git tag -s MYTAG # Creates a signed tag -
Überprüfe dein signiertes Tag, indem du
git tag -v [tag-name]ausführst.$ git tag -v MYTAG # Verifies the signed tag
Weiterführende Lektüre
-
[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)