使用代理 推送github报错fatal: unable to access 'https://github.com/***/network-security.git/': OpenSSL SSL_read: Connection was reset, errno 10054
有勇气的牛排
1203
git
2021-11-04 00:44:54
1 报错
fatal: unable to access ‘https://github.com/***/network-security.git/’: OpenSSL SSL_read: Connection was reset, errno 10054
2 解决方案:
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
参考地址:
某位大佬的指导
https://blog.csdn.net/qq_33349365/article/details/101514412
<h2><a id="1__0"></a>1 报错</h2>
<blockquote>
<p>fatal: unable to access ‘https://github.com/***/network-security.git/’: OpenSSL SSL_read: Connection was reset, errno 10054</p>
</blockquote>
<h2><a id="2__3"></a>2 解决方案:</h2>
<pre><div class="hljs"><code class="lang-shell">git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy http://127.0.0.1:7890
</code></div></pre>
<p>参考地址:</p>
<p>某位大佬的指导</p>
<p>https://blog.csdn.net/qq_33349365/article/details/101514412</p>
留言