trilbymedia / grav-plugin-git-sync

Collaboratively Synchronize your Grav `user` folder hosted on GitHub, BitBucket or GitLab
Apache License 2.0
243 stars 58 forks source link

fatal: unable to create thread: Resource temporarily unavailable fatal #198

Closed JavaVista closed 3 years ago

JavaVista commented 3 years ago

Ran the wizard fine and I am able to confirm that I can connect to github. However, I am getting the following error:

The repository is private and I am trying to sync to my master branch.

fatal: unable to create thread: Resource temporarily unavailable fatal: the remote end hung up unexpectedly send-pack: unexpected disconnect while reading sideband packet error: failed to push some refs to 'https://github.com/JavaVista/be-remarkable.git' fatal: the remote end hung up unexpectedly

w00fz commented 3 years ago

Hey @JavaVista, this is a git error. I did a quick googling and seems to be related to not enough memory available. People suggest to increase the memory with these commands:

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

Hope it helps.