Comment on SSH Keys on GitHubComments−avinassh11yAnd if you want to get the public key also:https://github.com/<username>.keysex.: https://github.com/avinassh.keys−bradleyland11yNo need. You can recover the public key from a private key using ssh-keygen's 'y' option:-y This option will read a private OpenSSH format file and print an OpenSSH public key to stdout.For example:ssh-keygen -y -f id_rsa > id_rsa.pub
Comments
And if you want to get the public key also:
https://github.com/<username>.keys
ex.: https://github.com/avinassh.keys
No need. You can recover the public key from a private key using ssh-keygen's 'y' option:
-y This option will read a private OpenSSH format file and print an OpenSSH public key to stdout.
For example:
ssh-keygen -y -f id_rsa > id_rsa.pub