failed to push some refs to git@heroku.com

后端 未结 27 2351
野性不改
野性不改 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:12

    this problem arises when you have some file that is not yet added and committed to git.

    git add .
    git commit -m "commit done"
    git push heroku master
    

提交回复
热议问题