Failed to connect to github.com port 443: Timed out
问题:Pycharm上push代码到GitHub一直失败:fatal: unable to access 'https://github.com/panc-test/pythonProject.git/': Failed to connect to github.com port 443: Timed out解决方案:(1)查看代理git config --global --get http.pr
·
问题:
Pycharm上push代码到GitHub一直失败:
fatal: unable to access 'https://github.com/panc-test/pythonProject.git/': Failed to connect to github.com port 443: Timed out
解决方案:
(1)查看代理
git config --global --get http.proxy
git config --global --get https.proxy
(2)设置设置代理
git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890
(3)取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
更多推荐
已为社区贡献2条内容
所有评论(0)