umma.dev

Set Up Verified Commits on GitHub

Create a SSH Key

ssh-keygen -t ed25519 -C "your_email@example.com"

Start the SSH Agent in the Background

eval "$(ssh-agent -s)"

Add SSH Key to Agent

ssh-add ~/.ssh/id_ed25519

Copy Public Key to Clipboard

pbcopy < ~/.ssh/id_ed25519.pub

Add Keys to GitHub

create ssh keys -> set up signing keys + read/write keys -> paste the key in from clipboard

Signing Commits within Git

git config --global gpg.format ssh
git config --global user.signingkey ~/.ssh/id_ed25519.pub
git config --global commit.gpgsign true

Test it Works

git commit -S -m "Signed commit test"