Skip to main content

Tags signieren

Du kannst Tags lokal mit GPG, SSH oder S/MIME signieren.

Hinweis: GitHub Desktop unterstützt nur die Commitsignierung, wenn Ihr Git-Client standardmäßig zum Signieren von Commits konfiguriert ist.

  1. Um ein Tag zu signieren, füge -s deinem git tag-Befehl hinzu.

    $ git tag -s MYTAG
    # Creates a signed tag
    
  2. Überprüfe dein signiertes Tag, indem du git tag -v [tag-name] ausführst.

    $ git tag -v MYTAG
    # Verifies the signed tag
    

Weiterführende Themen