failed to push some refs to git@heroku.com

后端 未结 27 2288
野性不改
野性不改 2020-12-02 10:10

I am getting this error when I am trying push my files into heroku rep.

Ive set autocrlf = false already in gitconfig but this problem is still there. i have also tr

27条回答
  •  北海茫月
    2020-12-02 10:13

    It is probably due to an Outdated yarn.lock file

    Just run the following commands

    yarn install
    git add yarn.lock
    git commit -m "Updated Yarn lockfile"
    git push heroku master
    

提交回复
热议问题