Some useful git tips

Here will be useful git tips and just repeating commands I often use but can’t remember. ...

March 9, 2011

Creating a public rsa key when you already have a private one

To create a public rsa key using a private one, simply type: $ ssh-keygen -y -f /path/to/private_rsa > /path/to/public_rsa Note that it is not adding user@hostname, so if you need it, add this in the end of public_rsa file with a leading space symbol

December 9, 2010