zjffun blog

Proxy

更新于 写于

Global

sh
export https_proxy=http://127.0.0.1:7890 http_proxy=http://127.0.0.1:7890 all_proxy=socks5://127.0.0.1:7890

cURL

sh
curl --proxy 127.0.0.1:1080 https:///www.example.net/
sh
curl --socks5 127.0.0.1:7890 https:///www.example.net/

Git

sh
git config --global http.proxy 'socks5://127.0.0.1:7890'
git config --global https.proxy 'socks5://127.0.0.1:7890'