First I create new keys using
ssh-keygen -t rsa -C "user@mail.com"
Then I add the generated key to heroku on heroku keys:add. After that, I tried to push my git repository into the hero using git push heroku master.
Until then, I set up a repository, the git, using the following commands: git init, git add ., git commit, heroku create, git remote add heroku git@heroku:sth.git.
However, I got this error Host key verification failed.
I am running ubuntu version 11.10. This is strange.
source
share