美文网首页
git设置代理

git设置代理

作者: 岑吾 | 来源:发表于2020-10-20 15:22 被阅读0次

    访问github慢是一个通病,不过可以给git设置带来提速

    1. 为git设置全局代理

    git config --global http.proxy socks5://127.0.0.1:1080
    git config --global https.proxy socks5://127.0.0.1:1080
    

    2. 取消代理

    git config --global --unset http.proxy
    git config --global --unset https.proxy
    

    3. 只对github.com

    #设置代理
    git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
    
    #取消代理
    git config --global --unset http.https://github.com.proxy
    

    4. 修改配置文件办法

    找到git的配置文件.gitconfig。这个文件一般在用户目录下

    # 为github.com配置socks5代理
    [http "https://github.com"]
        proxy = socks5://127.0.0.1:1080
    
    # 为所有的配置socks5代理
    [http]
        proxy = socks5://127.0.0.1:1080
    

    相关文章

      网友评论

          本文标题:git设置代理

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