Every now and again when performing a git push from my local machine up to my staging repo on the server, I receive a "fatal: unable to create threaded lstat" error (thrown by this line in Git: git/git)
If I wait a few minutes and try again the push goes through, so it's not catastrophic, merely an irritant.
Any ideas what needs changing server-side?
Have checked
output, which responds with 'unlimited' so it's not that...
SO implies it could be a resource limit somewhere, just not entirely sure where, and that it can be dodged by using
... but I'd rather just fix the resource limit than fudge around it.
Any suggestions?
If I wait a few minutes and try again the push goes through, so it's not catastrophic, merely an irritant.
Any ideas what needs changing server-side?
Have checked
Code:
ulimit -v
SO implies it could be a resource limit somewhere, just not entirely sure where, and that it can be dodged by using
Code:
git config core.preloadIndex false
Any suggestions?