git推送报错443
文章目录
- git推送失败,fatal: unable to access 'https://github.com/xxx.git/': Failed to connect to github.com port 443 after 10832 ms: Couldn't connect to server
- 分析
- 解决
git推送失败,fatal: unable to access ‘https://github.com/xxx.git/’: Failed to connect to github.com port 443 after 10832 ms: Couldn’t connect to server
分析
推送时,正常使用魔法,在VPN环境下进行操作。查了很多资料都无效。后来发现需要配置git代理,且要和VPN代理端口相同。
解决
使用一下命令:
git config --global http.proxy http://127.0.0.1:port
git config --global https.proxy http://127.0.0.1:port
上面命令中的两个port
需要依据你自己电脑上的代理端口进行相应修改。
查询端口方式:
打开“网络与Internet设置”–>代理–>手动设置代理–>端口