当前位置:   article > 正文

GIT-常见错误和解决办法总结_gitunsupported git version 1.9.2 at least 2.19.2 i

gitunsupported git version 1.9.2 at least 2.19.2 is required

**************************************************************************************************************

BUG1

问题:OpenSSL SSL_read: Connection was reset, errno 10054

show:

解决办法:解除SSL验证,在命令行中输入:

git config --global http.sslVerify "false"

*******************************************************************************************

BUG2

问题2:You are not currently on a branch(当前不是在分支上)

show:

解决办法:

  1. git branch temp bdcfe3d8
  2. git checkout master
  3. git merge temp

********************************************************************************************

BUG3

问题3:error: RPC failed; curl 92 HTTP/2 stream 5 was not closed cleanly before end of the underlying st

 解决办法:

修改协议: 因为是git调用,所以在GIT层面修改配置

在这里插入图片描述

git config --global http.version HTTP/1.1

BUG4

问题:error: RPC failed; curl 18 transfer closed with outstanding read data remaining

解决办法:curl的postBuffer默认值太小的原因,调整到了2G,然后就成功了,是根据以下命令调整的

git config --global http.postBuffer 524288000

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/399407
推荐阅读
相关标签
  

闽ICP备14008679号