$ vi /etc/hosts
199.232.68.133 raw.githubusercontent.com
$ git config --global https.proxy socks5://127.0.0.1:7070
$ git config --global http.proxy socks5://127.0.0.1:7070

$ git config --global https.proxy http://127.0.0.1:7070
$ git config --global http.proxy http://127.0.0.1:7070

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


搭桥案例

  • 目的是让VirtualBox虚拟机设备通过宿主机上的代理上网
  1. 宿主机上是使用ssh搭建的socks5代理
  2. 宿主机上再通过Privacy软件将socks5转为http代理

虚拟机上使repo、git使用代理上网

# repo不支持socks5代理
$ export http_proxy=http://10.0.2.2:8118