Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 857 Bytes

File metadata and controls

43 lines (27 loc) · 857 Bytes

SSH Allowed Signers

.ssh-allowed-signers contains my SSH public keys trusted for signing commits and tags on GitHub.

Format

principal key-type public-key-data comment

Current Trusted Keys

Verification

Commit Signing

To verify tags using these keys:

# Configure Git to use this file
git config gpg.ssh.allowedSignersFile .ssh-allowed-signers

# Verify a tag
git verify-commit <commit>

Tag Signing

To verify tags using these keys:

# Configure Git to use this file
git config gpg.ssh.allowedSignersFile .ssh-allowed-signers

# Verify a tag
git verify-tag <tag>

More Information