美文网首页
利用SS服务加速Pod Setup(git clone)

利用SS服务加速Pod Setup(git clone)

作者: Gmi91 | 来源:发表于2018-08-02 10:45 被阅读0次

只针对github加速

ss设置,开启http代理

注: ipv4:port ==> 127.0.0.1:1080

  1. git config 添加 http/https,在Mac终端输入如下命令 :
git config --global http.https://github.com.proxy http://ipv4:port
git config --global https.https://github.com.proxy http://ipv4:port
  1. git config 添加 sock5,在Mac终端输入如下命令 :
git config --global http.https://github.com.proxy socks5://ipv4:port
git config --global https.https://github.com.proxy socks5://ipv4:port
  1. 删除全局配置,在Mac终端输入如下命令 :
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy

相关文章

网友评论

      本文标题:利用SS服务加速Pod Setup(git clone)

      本文链接:https://www.haomeiwen.com/subject/evrjvftx.html