美文网首页
git如何针对不同IP设置不同代理

git如何针对不同IP设置不同代理

作者: golddream_y | 来源:发表于2019-02-14 13:53 被阅读0次

    cd ~

    gedit .gitconfig

    然后在编辑器中加入如下:

    全局代理

    [http]

    proxy=http://name:password@proxy.domain.com:port

    [https]

    proxy=http://name:password@proxy.domain.com:port

    要指定IP的代理(以下为无代理设置)

    [http "http://192.168.0.1:port"]

    proxy =

    [https "http://192.168.0.1:port"]

    proxy =


    如果不想配置,也可以直接命令行:
    git clone -c http.proxy=http://name:password@proxy.domain.com:port https://github.com/npm/cli.git



    create at 2017/10/21 16:59:19

    相关文章

      网友评论

          本文标题:git如何针对不同IP设置不同代理

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