Error while executing: npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t ssh://git@github...

npm install 安装依赖超时报错

报错图片.png

以上错误可能是git代理的问题

解决方法:

需要开启vpn代理,然后配置本地git proxy

配置git proxy
   为全局的 git 项目都设置代理:
   git config --global http.proxy 127.0.0.1:1080
   为某个 git 项目单独设置代理:
   git config --local http.proxy 127.0.0.1:1080 

配置完成可使用:
   git config --global http.proxy  查看代理地址
   git config --global --unset http.proxy  删除代理地址

127.0.0.1:1080为代理地址(根据自己本地地址配置)


查看代理地址.png
cmd命令.png
配置完成后:
npm install 
或者
npm install --registry=https://registry.npm.taobao.org

git 代理配置可参考:https://blog.csdn.net/qq_34817440/article/details/106420689

你可能感兴趣的:(Error while executing: npm ERR! C:\Program Files\Git\cmd\git.EXE ls-remote -h -t ssh://git@github...)