方式一
- 如果说使用的是项目http或者https地址,就配置http与https代理即可,输入以下命令:
shell
git config --global http.proxy "socks5://127.0.0.1:1080"
git config --global https.proxy "socks5://127.0.0.1:1080"
这样使用git clone/push/pull所有http或者https地址项目都会走代理。
- 还可以使用下面命令取消代理设置:
shell
git config --global --unset http.proxy
git config --global --unset https.proxy
方式二
- 在.git中的config文件中增加
shell
[http]
proxy = http://127.0.0.1:1080
[https]
proxy = http://127.0.0.1:1080