|
|
|
|
|
by LinuxBender
3266 days ago
|
|
You can have a GitHub specific ssh key. ssh-keygen -q -t rsa -b 4096 -N "passphrase" -C "mygithub@someaddress.org" -f ${HOME}/.ssh/.ghub
then in your ${HOME}/.ssh/config IdentitiesOnly yes
Host github.com
Hostname ssh.github.com
Port 443
User git
IdentityFile /home/username/.ssh/.ghub
ForwardAgent no
Not that it matters in this case, just sayin'. |
|