Git: fatal: unable to create threaded lstat
If the resource limit can't be removed by the hosting provider, you could consider using git config to disable preloading of the index (threaded lstat).
git config core.preloadIndex falseIf you need that setting when cloning the initial repository, then you will need to set it globally.
git config --global core.preloadIndex falsecode type:
Taken from:
https://stackoverflow.com/questions/33255285/i-get-fatal-unable-to-create-threaded-lstat-error-when-i-run-git-status-com
