当前位置:   article > 正文

命令行查看、设置和取消git或终端代理_查看当前git环境的代理情况

查看当前git环境的代理情况

1. git代理

1.1 查看git代理

git config --global -l
  • 1

1.2 设置git代理

1.2.1命令行设置(临时)

//设置全局代理
//http
git config --global https.proxy http://127.0.0.1:1080
//https
git config --global https.proxy https://127.0.0.1:1080
//使用socks5代理的 例如ss,ssr 1080是windows下ss的默认代理端口,mac下不同,或者有自定义的,根据自己的改
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080

//只对github.com使用代理,其他仓库不走代理
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
git config --global https.https://github.com.proxy socks5://127.0.0.1:1080
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
1.2.2 修改~/.gitconfig配置文件(永久性)
[http]
	proxy = socks5://127.0.0.1:1080
[https]
	proxy = socks5://127.0.0.1:1080
  • 1
  • 2
  • 3
  • 4

1.3 取消git代理

1.3.1 取消仅对https://github.com设置的代理

git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
  • 1
  • 2
  • 3
1.3.2 取消git对所有网站的代理
git config --global --unset http.proxy
git config --global --unset https.proxy
  • 1
  • 2

2. 终端代理

2.1 命令行查看终端代理

env|grep -I proxy
  • 1

2.2 命令行设置终端代理

export https_proxy=socks5://127.0.0.1:1080 http_proxy=socks5://127.0.0.1:1080 all_proxy=socks5://127.0.0.1:1080 
  • 1

此外还有ftp_proxy,no_proxy等设置

2.3 命令行取消终端代理

$ unset http_proxy && unset ftp_proxy && unset all_proxy && unset https_proxy && unset no_proxy

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

闽ICP备14008679号