# 关联远程仓库后,把本地库的所有内容推送到远程库上时报错: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
就成功上传了