#事象
Gitでcommitしたりresetしたり、いろいろしてからgit push heroku
したらエラー発生。
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 push heroku --force
(git push heroku -f
でも可)で強制的にプッシュ。
これで一件落着。
#注意
と思ったけど、調べてみると、--force
するのはあまりよくないらしい。
今回はRailsチュートリアルをやっていただけなので問題ないけど、複数人で開発する際は、--force-with-lease
を使った方がいいらしい。
ただし、注意も必要。
#結論
- 怒られたら理由を考える。
- よくわかっていないコマンド(オプション)を使わない。