Technotes

Technotes for future me

GitHub SSH auth


cd .ssh
ssh-keygen -t rsa -b 4096 -C "<email>"


cd .ssh/
chmod 644 config
vi config
Host github.com
HostName github.com
IdentityFile /home/blaataap/.ssh/git
vi git
chmod 700 git

ssh -T git@github.com
ssh -T git@gitlab.com
Last updated on 31 Jan 2021
Published on 11 Dec 2019
Edit on GitHub