解决 Failed to connect to github.com port 443:connection timed out

608 阅读1分钟
  1. git config --global http.proxy http://127.0.0.1:1080

  2. git config --global https.proxy http://127.0.0.1:1080

  3. 取消全局代理:

  4. git config --global --unset http.proxy

  5. git config --global --unset https.proxy