git仓库的代理
因为种种原因,github
访问很困难,仓库代码的提交比较受限,因此想到通过挂代理的方式让代码可以正常提交。
首先第一步,肯定需要shdowsocks
代理工具。
其次
全局设定:
1 | $ git config --global http.proxy http://127.0.0.1:1087 |
1 | $ $ git config --global https.proxy https://127.0.0.1:1087 |
or
只针对特定仓库设定:
1 | $ git config http.proxy http://127.0.0.1:1087 |
1 | $ git config https.proxy https://127.0.0.1:1087 |
注:
127.0.0.1:1087
是因为