首页 > 其他分享 >unable to access 'https://github.com/.../...git': Recv failure: Connection was reset

unable to access 'https://github.com/.../...git': Recv failure: Connection was reset

时间:2023-01-10 14:45:59浏览次数:57  
标签:reset ... github -- global git https config

解决git下载报错:fatal: unable to access 'https://github.com/.../...git': Recv failure: Connection was reset

1、在git中执行git config --global --unset http.proxy和git config --global --unset https.proxy

git config --global --unset http.proxy
git config --global --unset https.proxy

2、在cmd下执行ipconfig/flushdns 清理DNS缓存

ipconfig/flushdns

3、重新执行git clone https://github.com/…/.git/’ 即可

git clone 链接

标签:reset,...,github,--,global,git,https,config
From: https://www.cnblogs.com/nuomibaibai/p/17040228.html

相关文章