唠嗑
太折磨了....提个代码天天给我报错,给我整红温了...
参考:https://gist.github.com/laispace/666dd7b27e9116faece6?permalink_comment_id=3449775
设置git代理
设置
如果你的 Git 操作(如 clone
、push
或 pull
)经常因为网络问题变得很慢,尤其是连接到 GitHub 时,可以设置一个 HTTP/HTTPS 代理。使用以下命令来全局设置:
git config --global http.proxy 'http://127.0.0.1:端口号'
git config --global https.proxy 'http://127.0.0.1:端口号'
如果你使用的是 SOCKS5 代理,可以这样设置:
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
查看
git config --global --get http.proxy
git config --global --get https.proxy
取消
git config --global --unset http.proxy
git config --global --unset https.proxy
npm配置代理
设置http和https代理
npm config set proxy http://proxy-server-address:port
npm config set https-proxy http://proxy-server-address:port
查看代理
npm config get proxy
npm config get https-proxy
删除代理
npm config delete proxy
npm config delete https-proxy
利用nrm管理镜像源
安装nrm
npm i -g nrm
查看镜像源
nrm ls
设置某个镜像源
nrm use taobao