Mac终端设置代理
// 配置http访问的
export https_proxy=http://127.0.0.1:7890
// 配置https访问的
http_proxy=http://127.0.0.1:7890
// 配置http和https访问
all_proxy=socks5://127.0.0.1:7891
window终端设置代理
set http_proxy=http://127.0.0.1:1080
set https_proxy=http://127.0.0.1:1080
git设置代理
// 设置全局代理慎用
git config --global https.proxy http://127.0.0.1:1080
// 设置全局代理慎用
git config --global https.proxy https://127.0.0.1:1080
// 移除全局代理
git config --global --unset http.proxy
// 移除全局代理
git config --global --unset https.proxy