github国内连不上,git clone用不了,以前都是直接下载zip,但这样更新不好更新。
1 | git config --global https.proxy socks5://127.0.0.1:7890 |
socks5也可以换成http,具体情况看端口开的是什么代理
https.proxy是对所有https协议的链接使用代理,http.proxy是对http协议的链接使用代理,但github一般都是https
查看代理:git config --global --get https.proxy
取消代理:git config --global --unset https.proxy