美文网首页
Git 扩展之全局配置

Git 扩展之全局配置

作者: 周老一员 | 来源:发表于2019-10-14 17:41 被阅读0次

    配置代理

    设置代理

    git config --global http.proxy http://127.0.0.1:8080 
    git config --global https.proxy http://127.0.0.1:8080 
    

    取消代理

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

    查看当前已设置的代理

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

    相关文章

      网友评论

          本文标题:Git 扩展之全局配置

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