使用idea中git push出现错误fatal: unable to access ‘https://github.com/…’: OpenSSL SSL_read: Connection was reset, errno 10054
楼主查找资料,自2021年8月12日后,github不在使用以前的账号密码git push,所以需要申请token
然后重新登陆idea中的GitHub账号
第一步点击idea中的terminal
第二步输入以下两行
git config --global --unset http.proxy
git config --global --unset https.proxy
第三步,重新关联自己的git
git remote add origin git 自己的git
git push -u origin master重新输入账号密码
密码用token,以前的密码不行了!!!,2021年8月12日后用token
成功git push