Skip to content

Git and GitHub

Configure Git CLI

  • Execute following commands:
sh
git config --global user.name "Pirate Developer (mac)"
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 prompted

Upload SSH Key to GitHub

  • Copy the generated public key to clipboard:
sh
cat ~/.ssh/id_rsa.pub