Setting up a .ssh folder and what goes inside
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
cat name.pub (github.pub)
to obtain the actual key value. The .pub is the public key you are sending over.ssh -T git@github.com
ssh -i 'path_to_private_key' -T git@github.com
ssh -i 'github' -T git@github.com
Host github.com
IdentityFile ~/.ssh/github
git config --global --list