Git and GitHub
Configure Git CLI
- Execute following commands:
sh
git config --global user.name "Pirate Developer (linux)"
git config --global user.email "57877111+PirateDevCom@users.noreply.github.com"Create RSA Keys
sh
ssh-keygen -t rsa -b 4096
# Give a passphrase when promptedUpload SSH Key to GitHub
- Copy the generated public key to clipboard:
sh
cat ~/.ssh/id_rsa.pub- Navigate to this GitHub link and upload the SSH key.
