We'll use the Homebrew package manager to install the necessary software.
brew install gpg2 gnupg pinentry-mac
If the directory doesn't exist, create it and configure the pinentry program.
# Make the directory
mkdir ~/.gnupg
# Configure pinentry program
echo "pinentry-program $(brew --prefix)/bin/pinentry-mac" > ~/.gnupg/gpg-agent.conf
Create or update the gpg.conf
file to use the gpg-agent.
echo 'use-agent' > ~/.gnupg/gpg.conf
Add the following line to your shell configuration file (~/.bash_profile
, ~/.bashrc
, or ~/.zshrc
):
export GPG_TTY=$(tty)
Restart your terminal or source the configuration file based on your shell:
-
For macOS built-in bash:
source ~/.bash_profile
-
For bash through Homebrew over SSH:
source ~/.bashrc
-
For zsh:
source ~/.zshrc
Set secure permissions for the directory.
chmod 700 ~/.gnupg
Ensure a freshly configured gpg-agent is launched.
killall gpg-agent
Generate a new GPG key with a 4096-bit length.
gpg --full-gen-key
During key generation, you'll be prompted through several options:
- Select key type: Choose RSA
- Choose keysize: Choose 4096 bits
- Set key validity: Key is valid for? Choose 0 (Key does not expire)
Note: Remember the key ID displayed in the output, as you'll need it for later steps.
Answer questions to set up your GPG key:
- Real name: Your Full Name
- Email address: [email protected]
You'll also need to set a passphrase to protect your secret key.
List your generated keys.
gpg -k
Generate a short form of the key fingerprint.
gpg -K --keyid-format SHORT
Export the key fingerprint for GitHub. Replace <your key id>
with the appropriate value from the previous step.
gpg --armor --export <your key id>
Configure Git to use GPG.
git config --global gpg.program $(which gpg)
Set your signing key in Git configuration. Replace <your key id>
with the appropriate value from Step 8.
git config --global user.signingkey <your key id>
Configure Git to sign all commits using the specified key.
git config --global commit.gpgsign true
Create a signed commit using the configured key.
git commit -S -s -m "My Signed Commit"
Enter your signing key's passphrase when prompted by Pinentry.
Add your GPG key to your GitHub account settings.