Git push failed - unpack-objects abnormal exit

后端 未结 12 2151
长发绾君心
长发绾君心 2020-12-09 07:38

I\'m using remote git repository. I successfully commit my files and now I\'m trying to push it up to stream.

Operation fails with this messasge:

git         


        
12条回答
  •  囚心锁ツ
    2020-12-09 08:24

    Do check the permissions on the remote/origin repository. Are they writeable by the git user? If not, you will get this error. Something like:

    chown git_user.git_user -R /path/to/repo/your_funky_repo
    

    should do the trick on *nix systems. If your remote is on windows, I am sure there's something equivalent you could run.

提交回复
热议问题