当我们再做开发,从github上面下载库的时候,总是很慢。pod setup 那是更加的慢。这里我们配置一下代理,速度立马就上去了。
Git 目前支持的三种协议 git://
、ssh://
和 http://
,其代理配置各不相同:core.gitproxy
用于 git://
协议,http.proxy
用于 http://
协议,ssh://
协议的代理需要配置 ssh
的 ProxyCommand
参数。
1、配置http和https代理
$ git config --global http.proxy http://127.0.0.1:端口号
$ git config --global https.proxy https://127.0.0.1:端口号
2、 配置git代理
$ git config --global core.gitproxy github.com
后面的github.com
是根据情况而定,这里配置的是github的git.proxy
ssh代理没有试过,略
终端中执行clone
命令,速度应该很快了。
sourcetree 速度也会变快,因为它的
clone
操作,其实也是调用git clone
命令。
网友评论