LoginSignup
4
7

More than 5 years have passed since last update.

git push heroku してもherokuに反映されない

Posted at

問題

cloud9上で

$ heroku create
$ git push heroku

を実行しても
herokuのアプリケーションに反映されない。
スクリーンショット 2017-06-06 9.10.22.png

解決

$ heroku apps
$ heroku destroy (appname)
$ heroku create
$ git push heroku

これで解決(作り直し)

$ heroku apps

で、現在herokuに登録されているアプリケーションを全て表示します。
無料版の場合は上限5個だっけな?

$ heroku destroy (appname)

で、対象のアプリケーションを殺します。

$ heroku create
$ git push heroku

で、再度作成してpush

終わり。

原因?

すでにherokuに登録しているディレクトリで
もう一回heroku createしちゃったからおかしくなったのかも?

4
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
7