美文网首页
git 推拉出现 "fatal: The remote end

git 推拉出现 "fatal: The remote end

作者: 放羊娃华振 | 来源:发表于2020-05-28 18:11 被阅读0次

    在使用git更新或提交项目时候出现 "fatal: The remote end hung up unexpectedly " 原因是推送的文件太大。那就简单了,要么是缓存不够,要么是网络不行,要么墙的原因;特别是资源库在国外的情况下。此问题可能由网络原因引起。
    方法一:修改提交缓存大小为500M,或者更大的数字

    git config --global http.postBuffer 524288000
    # some comments below report having to double the value:
    git config --global http.postBuffer 1048576000
    

    或者在克隆/创建版本库生成的 .git目录下面修改生成的config文件增加如下:

    [http]  
    postBuffer = 524288000
    

    方法二:配置git的最低速度和最低速度时间:

    git config --global http.lowSpeedLimit 0
    git config --global http.lowSpeedTime 999999  单位 秒
    --global配置对当前用户生效,如果需要对所有用户生效,则用--system
    

    方法三:要是还下载不下来,可以考虑使用码云中转下。
    就是在码云中选择从github/gitlab上导入仓库。


    image.png

    之后选择下载zip:


    image.png

    相关文章

      网友评论

          本文标题:git 推拉出现 "fatal: The remote end

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