git push fatal: unable to create thread: Resource temporarily unavailable

后端 未结 4 491
悲&欢浪女
悲&欢浪女 2020-12-12 20:36

I\'m new to git. I\'m want to push a large commit to a remote server but the problem is when I use

git push origin master

it return the err

4条回答
  •  既然无缘
    2020-12-12 21:22

    I've also stumbled upon this error. To make it simpler, this error occurs because you want to copy a 100mb file into a hdd with free space of 50mb (or less). To fix this, SSH into the server and run the following commands:

    git config --global pack.windowMemory "100m"
    git config --global pack.packSizeLimit "100m"
    

提交回复
热议问题