【heroku デプロイ エラー】git push heroku masterしrejectedになった時の対処法

git push heroku masterのコマンドを実行しherokuにデプロイした時に「rejected」「non-fast-forward」のエラーが出てデプロイ出来ない

git push heroku master heroku デプロイ エラー rejected non-fast-forward

git push heroku masterのコマンドを実行しherokuにデプロイした時に「rejected」「non-fast-forward」のエラーが出てデプロイ出来ない・・・このサイトではgit push heroku masterのコマンド実行しデプロイ時のherokuの「rejected」「non-fast-forward」エラーの対処方法について説明していきます

heroku デプロイ時の「rejected」「non-fast-forward」のエラー対処方法

  1. heroku デプロイ時に「rejected」「non-fast-forward」エラーが出てしまう

① heroku デプロイ時に「rejected」「non-fast-forward」エラーが出てしまう

git push heroku master

を実行すると

To https://git.heroku.com/***.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://git.heroku.com/***.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
とエラーが出た場合、
git pull heroku master
でリモートの情報をローカルに持ってきた後で再度
git push heroku master

上記のコマンドを実行するとgit push heroku masterで「rejected」「non-fast-forward」のエラーが出なくなるはずです

以上で、「【heroku デプロイ エラー】git push heroku masterしrejectedになった時の対処法」の説明を終わります。

コメントの入力は終了しました。