klæʃ 默认端口 define DEFAULT_PORT=7890
关于klæʃ的使用请自行研究。
GITHUB设置
全局
// 添加
git config --global http.proxy socks5://127.0.0.1:7890
git config --global https.proxy socks5://127.0.0.1:7890
// 取消
git config --global --unset http.proxy
git config --global --unset https.proxy
只设置GITHUB走
// 添加
git config --global http.https://github.com.proxy socks5://127.0.0.1:7890
git config --global https.https://github.com.proxy socks5://127.0.0.1:7890
// 取消
git config --global --unset http.https://github.com.proxy
git config --global --unset https.https://github.com.proxy
可使用
git config -l
命令查看 git 的所有配置信息
NPM设置
// 设置
npm config set proxy=http://127.0.0.1:7890
npm config set https-proxy=http://127.0.0.1:7890
// 删除
npm config delete proxy
npm config delete https-proxy