Heroku: If you are developing on a branch and deploying via git you must run:

前端 未结 3 960
陌清茗
陌清茗 2021-01-20 10:49

Heroku thinks I\'m on a "different branch", but I am not (and the same version of the code most definitely has not "been built" as claimed):



        
3条回答
  •  时光取名叫无心
    2021-01-20 11:01

    This solution worked for me:

    Add and checkout new branch

    git checkout -b tes
    

    and push it to branch above

    git push heroku tes
    

提交回复
热议问题