Last active
July 30, 2022 12:44
-
-
Save wagura-maurice/701e1fecda33d0af548235e4b4ccce23 to your computer and use it in GitHub Desktop.
Configuring Git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global color.ui true | |
git config --global user.name "Wagura Maurice" | |
git config --global user.email "[email protected]" | |
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 "[email protected]" | |
cat ~/.ssh/id_rsa.pub | |
ssh -T [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment