Here’s the steps to setup signing your git commits with Allthenticate!
The key is to have at least Git version 2.34.1 which you can check with git --version
By default, your system won’t know to use our SSH agent for your keys.
This will require signing and auto sign every commit.
git config --global gpg.format ssh1
git config --global commit.gpgsign true
git config --global user.signingkey "$(ssh-add -L)"
<aside> 💡 Be sure to upgrade your git version to ≥ 2.34
</aside>
brew install git