当前位置:   article > 正文

Git 相关问题及解决方案_git pull recv failure: connection was reset

git pull recv failure: connection was reset

Git Pull Failed Recv failure: Connection was reset

git pull 拉取代码时出现如下错误:

git pull failed 
unable to access 'repository url': Recv failure: Connection was reset
  • 1
  • 2

解决方法:

git remote remove origin
git remote add origin 你的仓库地址
  • 1
  • 2

No tracked branch configured for branch master or the branch doesn’t exist.

如果这时候报错,如下所示

Can't Update 
  No tracked branch configured for branch master or the branch doesn't exist.
  To make your branch track a remote branch call, for example,
  git branch --set-upstream-to=origin/master master (show balloon)
  • 1
  • 2
  • 3
  • 4

解决方法:

提示的比较明显了,就是需要本地库和远程分支进行关联;

执行如下命令,使本地库和远程分支进行关联

git branch --set-upstream-to=origin/master master
  • 1

requested upstream branch ‘origin/master’ does not exist

这时如出现

requested upstream branch 'origin/master' does not exist
  • 1

但是 origin/master 其实是存在的

解决方法:

git pull origin master --allow-unrelated-histories
  • 1

再使本地库和远程分支进行关联

git branch --set-upstream-to=origin/master master
  • 1

这里注意是什么分支就改为什么分支,比如你是dev分支,对应的就改为origin/dev dev

git push
  • 1

解决上述问题就可以,推代码,也可以拉代码了

SSL certificate problem: unable to get local issuer certificate

如果在推代码或者拉代码的时候出现:

fatal: unable to access 你的仓库URL
SSL certificate problem: unable to get local issuer certificate
  • 1
  • 2

出现原因:

本地计算机上的SSL证书配置错误引起的,当推送、拉取或者克隆代码的时候,Git无法验证你的SSL证书,从而导致这个错误;

解决方式:

方式一:将Git的SSL证书(SSL certificate)拷贝到Git 安装目录中放置SSL证书(SSL certificate)的位置(推荐)

打开Git安装目录中存放SSL证书的地方,例如:

C:\Program Files\Git\mingw64\ssl\certs\
  • 1

修改 ca-bundle.crt,把SSL证书(SSL certificate)添加到文件内容的末尾并保存

vi ca-bundle.crt
  • 1

方式二:关闭SSL认证(不推荐,有安全问题)

git config --global http.sslverify false --命令的影响范围是系统当前用户
git config --system http.sslverify false --命令的影响范围是全局所有用户
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/163083?site
推荐阅读
相关标签
  

闽ICP备14008679号