Can't push to GitHub error: pack-objects died of signal 13

前端 未结 6 1528
醉话见心
醉话见心 2020-12-03 17:32

I\'m having trouble pushing my local folder to my remote repository on GitHub.

After I push it gets to around 96% then shows this..

Counting objects:         


        
6条回答
  •  我在风中等你
    2020-12-03 17:55

    Simple solution is to increase the HTTP post buffer size to allow for larger chunks to be pushed up to the remote repo. To do that, simply type:

    git config http.postBuffer 52428800
    

    The number is in bytes, so in this case I have set it to 50MB. The default is 1MB.

提交回复
热议问题