当前位置:   article > 正文

Ubuntu git与终端代理设置_ubuntu git与终端代理设置 csdn

ubuntu git与终端代理设置 csdn
1. git 代理设置
#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

#取消代理
git config --global --unset http.https://github.com.proxy
  • 1
  • 2
  • 3
  • 4
  • 5
2. 终端代理设置
sudo apt-get install polipo
  • 1

打开配置文件:sudo vim /etc/polipo/config
写入:

socksParentProxy = "localhost:1080"
socksProxyType = socks5
  • 1
  • 2

先关闭正在运行的polipo,然后再次启动

sudo service polipo stop
sudo service polipo start
  • 1
  • 2

验证:

curl ip.sb
http_proxy=http://localhost:8123 curl ip.sb
  • 1
  • 2

这里仅当次有效,要设置全局永久还需参考该博客

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

闽ICP备14008679号