为 Git 设定代理
可以为单独某个 git 仓设定代理:
1 2 | git config https.proxy http://127.0.0.1:1080 git config https.proxy https://127.0.0.1:1080 |
也可以加上 –global 参数,设定全局代理:
1 2 | git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 |
取消代理设定,相应的加上 –uset 参数:
1 2 | git config --global --unset http.proxy git config --global --unset https.proxy |