I am doing the Hartle Ruby on Rails Tutorial and this is my first time pushing a project to heroku and I'm trying to figure out what's going wrong..
$ heroku login
email
password
Could not find an existing public key
Would you like to generate one? [y/n] <--- I hit enter which gave me..
Generating new SSH public key.
Uploading SSH public key /Users/myname/.ssh/id_rsa.pub... done
Authentication successful.
After that I go to the next command, heroku create, because I am already in the directory I want, "first_app"
$ heroku create
Creating immense-savannah-2464... done, stack is cedar
http://immense-savannah-2464.herokuapp.com/ | git@heroku.com:immense-savannah-2464.git <--- this is not what Hartl gets in his tutorial so I don't know if this looks right or wrong.
After that I then try and push my project to heroku:
$ git push heroku master
The authenticity of host 'heroku.com (XX.XX.XX.XXX)' can't be established.
RSA key fingerprint is Xb:XX:Xe:XX:Xe:cX:XX:XX:XX:fX:XX:Xc:Xf:cX:XX:ad.
Are you sure you want to continue connecting (yes/no)? <--- I always hit "no" because I don't know if I should hit "yes." After I hit "no" it tells me that the host key verification failed!
Any idea what I'm doing wrong? I'm stuck - any help would be much appreciated!