Quickly and easily generate a key pair for passwordless connection. Also works perfect as git deploy keys! Generate the keys DO NOT DO THIS AS ROOT Run the command to generate the keys 1 $ ssh-keygen -P "" -t rsa -b 4096 -m pem -f my-key-pair -b flag sets the bits, 4096 is recommended -m pem is needed to generate a file in RSA Private Key format, not in OpenSSH Private Key format -f specifies the output key pair replace my-key-pair with the name of your key pair (preferably deploy_key or acce...