Git报错解决:fatal: unable to access'https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054
小老头 Lv3

Git报错解决:fatal: unable to access ‘https://github.com/.......': OpenSSL SSL_read: Connection was reset, errno 10054

这个错误是在我部署好我的博客以后,过了几天在修改内容的时候,发现的一个错误提示,所以在百度了之后发现的一个解决办法。

产生原因:一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错

参考网上解决办法:解除ssl验证后,再次git即可

git config --global http.sslVerify "false"

因为当时没有截图,所以就没有图片了,但是我在百度的时候,发现的解决这个错误的网址我准备发上来,如果你有需要可直接查看:

https://www.cnblogs.com/lvhuayan/p/14538106.html


其实也不知道想说点什么!但是这个是laotou.icu的第二篇文章了,记录一下哈。毕竟这个博客从开通到现在还没有内容的输出呢,正所谓有站点无内容,等同于“白扯”。

.article-copyright-info-container { position: relative; width: 100%; box-sizing: border-box; padding: 10px 6px; font-size: 1rem; background: var(--second-background-color); &::after { position: absolute; top: 0; left: 0; content: ''; width: 6px; height: 100%; background: var(--copyright-info-color); } ul { margin-left: 10px; li { margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--default-text-color); .license { font-weight: bold; } &:last-child { margin-bottom: 0; } } } }
 评论