vscode使用 git时,发生错误"Failed to connect to 127.0.0.1 port 1080 after 2078 ms: Couldn’t connect to server"文章来源:https://www.toymoban.com/news/detail-547987.html
原因:网速过慢
解决方法
先设置全局代理
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
然后在取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
就可以正常git clone 或push、pull了。如下图:
文章来源地址https://www.toymoban.com/news/detail-547987.html
到了这里,关于vscode git错误“Failed to connect to 127.0.0.1 port 1080 after 2078 ms: Couldn‘t connect to server“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!