DEV Community

Discussion on: How to Connect SSH Key to GitHub?

Collapse
 
peter279k profile image
peter279k

Another recommended tip is as follows:

  • We can also consider generating the RSA key pairs with 4096 bits.

ssh-keygen 4096 non-interactive mode

  • If we don't want to generate RSA key pairs interactively, we can consider following command.

ssh-keygen with non-interactive

ssh-keygen key pairs directory

Collapse
 
syedsohan profile image
Syed Sohan

Thanks for sharing.