Permanently added the RSA host key for IP address

11,231

This means that you are not in a rails application, such as if you are not in the correct directory.

Make sure you are actually in your apps directory.

rails myapp
cd myapp

This is the flow you should go through"

rails new_app
git init
git add .
git commit -m 'master'
heroku create
git push heroku
Share:
11,231
coolesting
Author by

coolesting

Write less, do more.

Updated on June 04, 2022

Comments

  • coolesting
    coolesting about 2 years

    Everybody,

    I get an error when I run this command: "git push heroku master". The error log shows the following:

    $ git push heroku master
    Warning: Permanently added the RSA host key for IP address '50.19.85.156' to the list of known hosts.
    Counting objects: 3, done.
    Writing objects: 100% (3/3), 209 bytes, done.
    Total 3 (delta 0), reused 0 (delta 0)
    
    -----> Heroku receiving push
     !     Heroku push rejected, no Rails or Rack app detected
    
    To [email protected]:simple-earth-536.git
     ! [remote rejected] master -> master (pre-receive hook declined)
    error: failed to push some refs to 'git@app_name.git'
    

    Any idea what could cause this? I welcome any suggestions, thanks all.

  • thenengah
    thenengah almost 13 years
    NP, Let me know if you need more help.
  • coolesting
    coolesting almost 13 years
    How to update the app to heroku when i fix my code in local repository ?
  • thenengah
    thenengah almost 13 years
    git push heroku or git push heroku master
  • coolesting
    coolesting almost 13 years
    'git push heroku master' this command works fine, this 'git push heroku' get me some warning and a error message on custom page of heroku, that message like this 'The page you were looking for doesn't exist. You may have mistyped the address or the page may have moved. '
  • coolesting
    coolesting almost 13 years
    heroku create git push heroku , about this command , i also need to add the 'master' keyword at last.