当前位置: 代码迷 >> 综合 >> 解决unable to access ‘https://github.com/xxx/xxx.git/‘: OpenSSL SSL_read: Connection was reset, errno
  详细解决方案

解决unable to access ‘https://github.com/xxx/xxx.git/‘: OpenSSL SSL_read: Connection was reset, errno

热度:63   发布时间:2023-11-20 06:57:28.0

# 关联远程仓库后,把本地库的所有内容推送到远程库上时报错:unable to access ‘https://github.com/juanjuan-thy/jenkins_project.git/’: OpenSSL SSL_read: Connection was reset, errno 10054

报错如下:
在这里插入图片描述

解决办法:
分别输入两行命令

git config --global --unset http.proxygit config --global --unset https.proxy

在这里插入图片描述

然后再次执行关联命令

git remote add origin git [github上面以http开头的url]

在这里插入图片描述
在运行命令

git push -u origin master

在这里插入图片描述

就成功上传了

  相关解决方案