Git报错Error:RPC failed; curl 18 transfer closed with outstanding read data remaining

2021-02-23 14:19:42 浏览数 (1)

原因:缓存区溢出

httpBuffer加大

代码语言:javascript复制
git config --global http.postBuffer 524288000
git config --list

压缩配置

代码语言:javascript复制
git config --global core.compression -1 

修改配置文件

代码语言:javascript复制
export GIT_TRACE_PACKET=1
export GIT_TRACE=1
export GIT_CURL_VERBOSE=1

0 人点赞