zoukankan      html  css  js  c++  java
  • git报错,远程克隆和更新不下来解决方法

    报错:

    error: RPC failed; curl 18 transfer closed with outstanding read data remaining
    fatal: The remote end hung up unexpectedly
    fatal: early EOF
    fatal: unpack-objects failed

    解决方法:更改buffer大小
    Git config --global http.postBuffer 524288000

    需要注意的是http.postBuffer 后,单位是b,524288000B也就500M左右

    然后增加最低速度时间

    git config --global http.lowSpeedLimit 0
    git config --global http.lowSpeedTime 999999

    通过运行 git config --list --show-origin 你可以找到你的gitconfigs。

  • 相关阅读:
    AC自动机模板
    2013 ACM/ICPC Asia Regional Changsha Online–C (模拟)
    Codeforces126B
    Codeforces182D
    Codeforces149E
    POJ3080
    POJ2752
    HDU4745
    HDU4737
    POJ1226
  • 原文地址:https://www.cnblogs.com/51net/p/13394552.html
Copyright © 2011-2022 走看看