美文网首页
git设置下载代理

git设置下载代理

作者: To_Be_Better | 来源:发表于2018-04-27 11:13 被阅读0次

    作为一个Android爱好者,在git项目的时候经常会需要git墙外的项目比如下面这样的。这时候就需要给git设置代理。参考文章

    git clone https://android.googlesource.com/platform/packages/apps/Settings
    

    前提

    要给git设置代理,首先自己要有代理。我这次使用的是自己搭的vps。

    设置

    使用http或者https代理
    git config --global https.proxy http://127.0.0.1:1080'
    git config --global https.proxy 'https://127.0.0.1:1080'
    或者使用sock5代理
    git config --global https.proxy 'socks5://127.0.0.1:1080'
    git config --global https.proxy 'socks5://127.0.0.1:1080'
    取消代理
    git config --global --unset http.proxy
    git config --global --unset https.proxy
    

    相关文章

      网友评论

          本文标题:git设置下载代理

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