Git Couldn't reserve space for cygwin's heap,异常解决

今天早上来了,Git出现错误!

 1、git pull的时候,老出错:Git Couldn't reserve space for cygwin's heap。用google查找解决方法是:

C:\Program Files (x86)\Git\bin>rebase.exe -b 0x50000000 msys-1.0.dll

2、git pull的时候,老出错:Git Couldn't reserve space for cygwin's heap error 0。用google查找解决方法是:

C:\Program Files (x86)\Git\bin>rebase.exe -b 0x76000000 msys-1.0.dll

具体:

1. 运行CMD,以管理员身份打开

2. 运行:rebase.exe -b 0x50000000 msys-1.0.dll

再次git pull的时候,不再报错

注意:

不过网上说,先把git/bin下的 msys-1.0.dll用copy到其它目录,再用管理员身份在cmd中再copy到bin目录下,再次运行rebase.exe -b 0x50000000 msys-1.0.dll,就不会报这个错误:ReBaseImage (msys-1.0.dll) failed with last error = 6

原地址:

http://stackoverflow.com/questions/18502999/git-extensions-win32-error-487-couldnt-reserve-space-for-cygwins-heap-win32

转自:https://my.oschina.net/lockupme/blog/707523

猜你喜欢

转载自blog.csdn.net/chuyouyinghe/article/details/81626576