Created
July 8, 2024 12:55
-
-
Save Korveld/00f70830c5c8ab6a62ca15a011382a0f to your computer and use it in GitHub Desktop.
"fatal: unable to create threaded lstat" error when run "git status" command
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 false | |
If you need that setting when cloning the initial repository, then you will need to set it globally. | |
git config --global core.preloadIndex false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment