国内git clone GitHub内容网速可以说惨不忍睹,换香港和国外的主机才知道GitHub的速度。
因此打算让git走ss流量,使用我gcp的ss来完成
前提条件
有搭建好的ss,并且开全局,本机端口号1080
git clone 走ss设置
# 设置代理
git config --global http.proxy socks5://127.0.0.1:1086
git config --global https.proxy socks5://127.0.0.1:1086
git config --global http.sslVerify false
#取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
-
之前速度
xian.png -
代理之后
hou.png
可还行,晚上ss慢,应该能有2~3mbps的
缺点是只有http和https下载走ss,ssh下载不能
这里将ssh也代理
修改.ssh/config
Host github.com bitbucket.org
ProxyCommand nc -x 127.0.0.1:1080 %h %p
我没有尝试。。
网友评论