2011-07-20 16 views
2

みんな、IPアドレスのRSAホストキーを恒久的に追加しました

"git push heroku master"コマンドを実行するとエラーが発生します。エラーログには、次の情報が表示されます。

$ 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 '[email protected]_name.git' 

何が原因なのでしょうか?どんな提案もありがとうございます。

答えて

2

これは、あなたが正しいディレクトリにいないなど、あなたがレールアプリケーションに参加していないことを意味します。

実際にあなたのappsディレクトリにいることを確認してください。

rails myapp 
cd myapp 

これは、あなたが

rails new_app 
git init 
git add . 
git commit -m 'master' 
heroku create 
git push heroku 
+0

から再度ありがとう、良い答えを、この記事に従ってください。 – coolesting

+0

NP、あなたなら、私を知ってみましょう「を経る必要がある流れであります – s84

+0

ローカルリポジトリに自分のコードを修正したときにヒロクにアプリをアップデートするには? – coolesting

関連する問題