问题:clone项目后依赖安装不上,报错128
解决:设置git代理,前提有科学上网工具
1,找到代理的使用的(http://127.0.0.1:1080)
查找进程的pid
打开进程找到对应pin对应的http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
//配置你自己所用的翻墙软件所用的IP,可能不只一个
git config --global https.proxy https://127.0.0.1:1080
git config --global --unset http.proxy
git config --global --unset https.proxy
npm config delete proxy