Git tips and tricks
use ssh over https on github git remote -v it will look like https://ww.github.com/… change it via git remote set-url origin <link> where link is of type git@github.com:codexetreme/… Generate ssh key rsa - an old algorithm based on the difficulty of factoring large numbers. A key size of at least 2048 bits is recommended for RSA; 4096 bits is better. RSA is getting old and significant advances are being made in factoring. Choosing a different algorithm may be advisable. It is quite possible the RSA algorithm will become practically breakable in the foreseeable future. All SSH clients support this algorithm. ...