开始git bash
时,我收到此错误:
[main] bash 8176 child_copy: stack write copy failed, 0xFFFFBE50..0x1000 00000, done 2002650816, windows pid 11128, Win32 error 5
518 [main] bash 8176 fork: child 10232 - pid 10232, exitval 0x103, errno 11
bash: fork: retry: Resource temporarily unavailable
bash: fork: Resource temporarily unavailable
任何人都知道如何解决这个错误?
答案 0 :(得分:0)
这通常与Cygwin错误有关,这意味着您安装了Git 和 Cygwin,后者导致前者出现问题。
再次尝试as in this answer,使用CMD会话设置简化的路径:
set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\
set GH=C:\path\to\git
set PATH=%GH%\bin;%GH%\usr\bin;%GH%\mingw64\bin;%PATH%
然后输入git bash
。