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

git config --global http.sslVerify "false"

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

git config --global --unset https.proxy


fatal: remote origin already exists.  

取消关联github
1、先输入$ git remote rm origin(删除关联的origin的远程库)

2、再输入$ git remote add origin git@github.com:(github名)/(git项目名).git 就不会报错了!