如果是 git clone http:// 或 git clone https:// 的话直接把代理服务器加到环境变量就可以了。
如果是 git clone git:// 的话麻烦一些(可能有的 git 源不提供 http/https 的方式),需要先安装
socat,然后创建一个叫做 gitproxy 的脚本并填上合适的服务器地址、端口号等,最后配置 git 使
用 gitproxy 脚本。
Git 平常使用最多的是 SSH 协议和 HTTP(S) 协议,假设本地 1080 端口有一个 socks5 代理服务器,就要为这两个协议分别设置代理。HTTP(S) 协议:
全局代理:
git config --global http.proxy socks5://127.0.0.1:1080
只对特定 URL 设置代理:
git config --global http.<要设置代理的URL>.proxy socks5://127.0.0.1:1080
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
SSH 协议:
SSH 协议相对复杂,需要安装一个代理协议转换工具 connect ,从这里获取源代码,用 gcc 编译即可,注意 Mac 下可能需要注释掉1765行才能编译通过。
修改 ~/.ssh/config 加入如下内容
全局代理:
ProxyCommand connect -S 127.0.0.1:1080 %h %p
只对特定域名进行代理:
Host 域名
ProxyCommand connect -S 127.0.0.1:1080 %h %p
Host github.com
ProxyCommand connect -S 127.0.0.1:1080 %h %p
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)