使用SOCKS5全局代理:
1 2 |
git config --global http.proxy socks5://127.0.0.1:1080 git config --global https.proxy socks5://127.0.0.1:1080 |
只对github.com使用代理:
1 |
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080 |
查看设置使用:
1 |
git config --global -l |
取消代理:
1 2 3 |
git config --global --unset http.proxy git config --global --unset https.proxy git config --global --unset http.https://github.com |
转载时请保留出处,违法转载追究到底:进城务工人员小梅 » git使用代理及取消使用代理