Skip to content

Instantly share code, notes, and snippets.

@wagura-maurice
Last active July 30, 2022 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wagura-maurice/701e1fecda33d0af548235e4b4ccce23 to your computer and use it in GitHub Desktop.
Save wagura-maurice/701e1fecda33d0af548235e4b4ccce23 to your computer and use it in GitHub Desktop.
Configuring Git
git config --global color.ui true
git config --global user.name "Wagura Maurice"
git config --global user.email "business@waguramaurice.com"
git config --global user.signingkey [secret-gpg-key-id]
git config --global commit.gpgsign true
git config --global gpg.program $(which gpg)
ssh-keygen -t rsa -b 4096 -C "business@waguramaurice.com"
cat ~/.ssh/id_rsa.pub
ssh -T git@github.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment