美文网首页
git 常见错误

git 常见错误

作者: 爱玩保龄球 | 来源:发表于2020-03-11 12:27 被阅读0次
  • 错误
git version 2.21.0 (Apple Git-122)
== pull ffmpeg base ==
Cloning into 'extra/ffmpeg'...
remote: Enumerating objects: 539029, done.
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: the remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
  • 解决 不限制缓存
git config http.postBuffer 524288000
git config https.postBuffer 524288000
  • 不限制网速
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
  • 如果依旧clone失败,则首先浅层clone,然后更新远程库到本地
git clone --depth=1 http://gitlab.xxx.cn/yyy/zzz.git
git fetch --unshallow

相关文章

  • Git常见问题汇总

    12 git 常见错误解决方法 —————————————————————————————— 命令:git pul...

  • Git 常见错误

    如果commit已经提交, 版本出错的解决方法 通过哈希值回退版本 查看 Git commit 记录 取得之前的哈...

  • 常见git错误

    使用git在本地创建一个项目的过程 $ makdir ~/hello-world ...

  • git 常见错误

    错误 解决 不限制缓存 不限制网速 如果依旧clone失败,则首先浅层clone,然后更新远程库到本地

  • Git 常见错误

    fatal:refusing to merge unrelated histories 出现原因 使用git pu...

  • Git常见错误

    xcrun: error: invalid active developer path 使用终端克隆github的...

  • Git常见操作和常见错误!

    title: Git常见操作和常见错误!date: 2015-01-22 11:47:14categories: ...

  • Git常见错误整理

    错误1:Git: fatal: The remote end hung up unexpectedly解决办法: ...

  • git clone 常见错误

    1、错误: SSL certificate problem: self signed certificate 解决...

  • git常见错误整合

    1、fatal: cannot lock ref 'HEAD':解决方法重新创建Head echo ref: re...

网友评论

      本文标题:git 常见错误

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