1、问题1: error: RPC failed; result=18, HTTP code = 200 MiB | 181.00 KiB/s
## git clone https://github.com/apache/doris.git
Cloning into 'doris'...
remote: Enumerating objects: 505750, done.
remote: Counting objects: 100% (30319/30319), done.
remote: Compressing objects: 100% (2132/2132), done.
error: RPC failed; result=18, HTTP code = 200 MiB | 181.00 KiB/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
解决办法:
git config --global http.postBuffer 524288000
切记一定加上--global,否则还是会报错:error: could not lock config file .git/config: No such file or directory
524288000,该值为50MB,可以根据情况继续调大。
2、问题2:fatal: The remote end hung up unexpectedly
[root@c3f49f06b9ef ~]# git clone https://github.com/apache/doris.git
Cloning into 'doris'...
error: RPC failed; result=35, HTTP code = 0
fatal: The remote end hung up unexpectedly
解决办法
git config --global http.postBuffer 500M
标签:解决办法,git,remote,failed,报错,error,Docker,config,doris From: https://www.cnblogs.com/yeyuzhuanjia/p/18033045