问题1. 连不上端口,通常是由网络连接问题而导致
PS F:\代码仓库\GitHub\project> git pull
fatal: unable to access 'https://github.com/**/**.git/': Failed to connect to github.com port
443 after 21088 ms: Couldn't connect to server
解决办法:取消代理设置
这是最常见的解决方法之一,通过在终端执行以下命令,可以取消 Git 的代理设置:
git config --global --unset http.proxy
git config --global --unset https.proxy
1955

被折叠的 条评论
为什么被折叠?



