前提・実現したいこと
Ruby on railsとPostgreSQLでHerokuにアプリケーションをデプロイする際に問題が生じました。
git push heroku masterとすると
Everything up-to-date
と表示されるのでその問題を解決しHeroku上にアプリケーションをデプロイしたいです。
発生している問題・エラーメッセージ
git push heroku masterとすると
Everything up-to-date
と表示されます。
該当のソースコード
*butubeはアプリケーション名です。
heroku login
heroku git:clone -a butube Cloning into 'butube'...://cli-auth.heroku.com/auth/cli/browser/2a04f498-50eb-45c1-bfa3-db54f05844bf remote: Counting objects: 111, done. remote: Compressing objects: 100% (83/83), done. Receiving objects: 57% (64/111)used 111 (delta 8) Receiving objects: 100% (111/111), 23.55 KiB | 1.02 MiB/s, done. Resolving deltas: 100% (8/8), done.
cd butube
git add .
git commit -am "make it better" On branch master Your branch is up to date with 'heroku/master'. nothing to commit, working tree clean
git push heroku master Everything up-to-date
試したこと
調べてみるとコミットのし忘れが原因であることが多いらしいので「git commit -am "make it better"」とコマンドを打ったところ
On branch master Your branch is up to date with 'heroku/master'. nothing to commit, working tree clean
と返ってきました。
補足情報
Windows 10 home
Ruby on rails 5.2.4
Ruby 2.6.6
PostgreSQL 12.2
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。