heroku create
Creating floating-planet-1824......................... done, stack is bamboo-mri-1.9.2
http://floating-planet-1824.heroku.com/ | git@heroku.com:floating-pl
Assuming you already have a public and a private key to use in your ~/.ssh
folder, there might be two different scenarios:
heroku keys:add ~/.ssh/your_public_key
Or you did, but you don't have your identities loaded into your SSH authentication agent. Solution, execute:
ssh-add -K ~/.ssh/your_private_key # OSX
ssh-add -k ~/.ssh/your_private_key # Ubuntu
and enter your passphrase, so you can use your private key.