当前位置:   article > 正文

git 设置代理和取消代理_git 删除代理

git 删除代理

(一)设置代理

  (1)命令方式设置http代理:git config --global http.proxy  xxxx

  (2)命令方式设置https代理:git config --global https.proxy  xxxx

  (3)命令方式设置core代理:git config --global core.gitproxy  xxxx

  (4)配置文件方式设置代理:找到.gitconfig文件,添加如下内容:

[http]
    proxy = xxx
[https]
    proxy = xxx
[core]
    gitproxy = xxx

  (二)取消代理

  (1)命令方式:git config --global --unset http.proxy

        git config --global --unset https.proxy

        git config --global --unset core.gitproxy

  (2)文件方式:找到.gitconfig文件,直接将http段下的proxy区块删除,https段下的proxy区块删除,core段下的gitproxy区块删除,删除后效果如下所示:

[http]
[https]
[core]
  1. git config --global http.proxy 'http://127.0.0.1:4780'
  2. git config --global https.proxy 'http://127.0.0.1:4780'
  3. git config --global --get http.proxy
  4. git config --global --get https.proxy
  5. git config --global --unset http.proxy
  6. git config --global --unset https.proxy

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/482603
推荐阅读
相关标签
  

闽ICP备14008679号