Git报错 -> Failed to connect to github.com port 443 after ***** ms: Couldn‘t connect to server

原因

这是由于本机系统代理端口和git端口不一致导致的。

解决方案

  1. 查看本机端口
    Git报错 -> Failed to connect to github.com port 443 after ***** ms: Couldn‘t connect to server_第1张图片
  2. 修改git端口
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
  1. 再次push
  • [报错解决] Failed to connect to github.com port 443 after ***** ms: Couldn‘t connect to server

你可能感兴趣的:(Git,git,github)