美文网首页
git clone出现问题

git clone出现问题

作者: KyoDante | 来源:发表于2020-03-12 23:57 被阅读0次
    error: RPC failed; curl 18 transfer closed with outstanding read data remaining
    fatal: The remote end hung up unexpectedly
    fatal: early EOF
    fatal: index-pack failed
    

    通过设置postBuffer的数值可以解决部分问题。有部分问题实际是因为网络访问而导致的,所以此时需要”代理“。

    git config --global http.postBuffer 524288000
    git config --list //查看设置的config
    

    设置代理可以解决速度太慢的问题:(注:如果使用虚拟机的话,设置网络为NAT,而且下面的127.0.0.1要改成宿主机的ip,端口号一般为1080,根据代理的端口不同而不同。)

    git config --global http.proxy 'socks5://127.0.0.1:1080'
    git config --global https.proxy 'socks5://127.0.0.1:1080'
    

    取消代理

    git config --global --unset http.proxy
    git config --global --unset https.proxy
    

    相关文章

      网友评论

          本文标题:git clone出现问题

          本文链接:https://www.haomeiwen.com/subject/zfsgjhtx.html