美文网首页
git config proxy

git config proxy

作者: myserendipit | 来源:发表于2018-04-17 15:52 被阅读65次

    Failed to connect to chromium.googlesource.com port 443: Operation timed out

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

    为什么端口号是1086呢?这个每个人的代理可能不一样,如果是ss的话,是在ss->偏好设置->高级->本地socks5

    取消设置代理:

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

    相关文章

      网友评论

          本文标题:git config proxy

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