Deploying to heroku with git keeps getting rejected due to fast-forwards

前端 未结 3 1838
时光说笑
时光说笑 2021-02-02 09:00

I keep getting the following fail with heroku + git...

$ heroku jammit:deploy --app XXXXXXXXXXX
===== Compiling assets...[OK]
===== Commiting assets...[OK]
=====         


        
3条回答
  •  旧巷少年郎
    2021-02-02 09:48

    Just force the commit every time you push and it will push it even if there are fast-forward commits. We do this in our development Heroku server all the time since we're all pushing different commits (some further behind than others).

    git push -f git@heroku.com:picasso-staging.git
    

    I don't use jammit for deploying, but you could probably get away with force pushing first and then running the jammit task second. Or check and see if jammit supports a force push flag of some sort.

提交回复
热议问题