Signing GitHub Commits with SSH Keys
A How-To Guide
Overview
These are practical steps to sign commits in GitHub using SSH keys.
Create directory
mkdir ~/.ssh
mkdir ~/.ssh/github
Generate SSH key
ssh-keygen -t rsa -b 4096 -f ~/.ssh/github/{yourGithubAccountName}/id_rsa -C "{yourEmailAd...
ochairo.hashnode.dev1 min read