Why do I obtain this error when deploying app to Heroku?

前端 未结 4 992
死守一世寂寞
死守一世寂寞 2020-12-02 17:40

I am getting some kind of error when deploying my app to heroku using git hub. The problem is, I don\'t understand the heroku logs and the entailing errors. Here is the hero

4条回答
  •  不思量自难忘°
    2020-12-02 18:21

    My silly mistake was that I was pushing the master branch to Heroku while my changes were in another branch!

    Make sure that you merge your latest branch with your master branch first

    > git checkout master
    
    > git merge your-latest-branch
    
    > git push heroku master
    

提交回复
热议问题