Skip to main content
We publish frequent updates to our documentation, and translation of this page may still be in progress. For the most current information, please visit the English documentation.

Assinar tags

Você pode assinar marcas localmente usando GPG, SSH ou S/MIME.

Observação: o GitHub Desktop só dá suporte à assinatura de commit se o cliente do Git está configurado para assinar commits por padrão.

  1. Para assinar uma marca, adicione -s ao comando git tag.
    $ git tag -s MYTAG
    # Creates a signed tag
  2. Verifique a tag assinada executando git tag -v [tag-name].
    $ git tag -v MYTAG
    # Verifies the signed tag

Leitura adicional