美文网首页git
git 使用SOCK5代理

git 使用SOCK5代理

作者: 谢昆明 | 来源:发表于2017-03-07 10:09 被阅读862次

    全局代理,写入配置
    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 --unset http.proxy
    git config --global --unset https.proxy

    临时代理
    ALL_PROXY=socks5://127.0.0.1:8888 git clone https://github.com/some/one.git

    打赏

    如果这篇文章解决了您的问题,让我买根烟抽抽。

    支付宝.jpg 微信.jpg

    相关文章

      网友评论

        本文标题:git 使用SOCK5代理

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