如何使用shadowsocks代理

编程

#SSH代理配置

export http_proxy=”http://127.0.0.1:1080”

export https_proxy=”http://127.0.0.1:1080”

在终端中执行 source ~/.bashrc, 或者退出当前终端再起一个终端

#git 代理配置

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

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

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

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

#取消全部代理

git config --global --unset-all http.proxy

git config --global --unset-all https.proxy

以上是 如何使用shadowsocks代理 的全部内容, 来源链接: utcz.com/z/513347.html

回到顶部