Github 无法连接: 代理问题

无法与 github 连接的情况下(一般国内环境都无法直连), 使用 git config --global 设置全局代理.

1
2
git config --global http.proxy http://127.0.0.1:7897
git config --global https.proxy https://127.0.0.1:7897
阅读更多