Git pull fails with bad pack header error

前端 未结 4 884
失恋的感觉
失恋的感觉 2020-12-02 13:14

git pull fails with following error

remote: Counting objects: 146, done.
remote: fatal: unable to create thread: Resource temporarily unavailable
error: git          


        
4条回答
  •  清歌不尽
    2020-12-02 13:58

    Complementing the @Mark Longair's answer:

    I had to run the following commands to fix this issue:

    git config --global pack.windowMemory "100m"
    git config --global pack.packSizeLimit "100m"
    git config --global pack.threads "1" 
    git config --global pack.deltaCacheSize "512m"
    

    You can see more about these commands in the git documentation git config.

提交回复
热议问题