转自:https://www.cnblogs.com/hmy-666/p/17304317.html
登录github时报错:
fatal: unable to access 'https://github.com/GIT1582364788/RuoYi.git/': OpenSSL ...
产生原因:一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错。
解除ssl验证后,再次git即可
git config --global http.sslVerify "false"
之后再重新提交,登录即可。
标签:git,登录,仓库,上传,github,https,com From: https://www.cnblogs.com/shababy/p/17628396.html