当前位置:   article > 正文

github使用相关问题

github使用相关问题

建议

  1. 最好科学上网
  2. 配置ssh key

可能错误

clone

remote: Enumerating objects: 357, done.
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

解决方法:
将缓存Buffer容量调大(特别是如有大文件)

sudo apt install gnutls-bin
git config --global http.sslVerify false
git config --global http.postBuffer 5000000000
  • 1
  • 2
  • 3

push

如有科学上网,push还是遇到问题的话可以配置代理

git config --global http.proxy 127.0.0.1:1234
git config --global https.proxy 127.0.0.1:1234
  • 1
  • 2

地址就是本地回环即可,端口号查看科学上网软件监听的端口并做相应修改

git config --global http.proxy socks5 127.0.0.1:1234
git config --global https.proxy socks5 127.0.0.1:1234
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/680757
推荐阅读
相关标签
  

闽ICP备14008679号