git 拉取项目出现 RPC failed; curl 18 transfer closed with outstanding read data remaining的解决方案

今天拉取github上的代码,RPC failed; curl 18 transfer closed with outstanding read data remaining

解决方案:对应代码https://github.com/fleapx/cmgdpt-mec-facerec-ai.git

git config http.postBuffer 524288000
git config  --local   http.sslVerify "false"
git config --local http.lowSpeedLimit 0
git config --local http.lowSpeedTime 999999
git clone --depth=1 http://gitlab.xxx.cn/yyy/zzz.git
git fetch --unshallow

如图

发布了28 篇原创文章 · 获赞 3 · 访问量 1926

猜你喜欢

转载自blog.csdn.net/as4589sd/article/details/104010292