git config --global http.proxy #_unbuntu proxy server">
当前位置:   article > 正文

Ubuntu代理设置_unbuntu proxy server

unbuntu proxy server

全局代理查看与设置

#查看
env|grep -i proxy

#清空
export http_proxy=""
export https_proxy=""
export HTTP_PROXY=""
export HTTPS_PROXY=""
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

设置git代理

git config --global https.proxy <Your http proxy server>
git config --global http.proxy <Your http proxy server>

#The ~/.gitconfig should reflect these entries as:
[http]
        proxy = <Your http proxy server>
[https]
        proxy = <Your http proxy server>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

Git代理设置

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

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

#reset proxy
git config --global --unset http.proxy

git config --global --unset https.proxy

#或者只设置github.com代理,https使用http代理因为有时候https似乎不起效果
git config --global http.https://github.com.proxy http://127.0.0.1:1080
git config --global https.https://github.com.proxy https://127.0.0.1:1080
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/656928
推荐阅读
相关标签