赞
踩
目录
- error Error while executing:
- 3944 error C:\Program Files\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git
- 3944 error
- 3944 error fatal: unable to connect to github.com:
- 3944 error github.com[0: 20.205.243.166]: errno=Unknown error
- 3944 error
- 3944 error
- 3944 error exited with error code: 128
- 3945 verbose exit [ 1, true ]
npm config edit
proxy=http://username:password@proxy_host:proxy_port
有效果,: 从流量 来看
但还是报
error C:\Program Files\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git
怀疑是git 不行
git config --global https.proxy https://username:password@proxy_host:proxy_port
用下列命令来查看
git config --global --get http.proxy
git config --global --unset http.proxy
git config --global --unset https.proxy
npm ERR! git.EXE ls-remote -h -t ssh://git@github.com解决办法,亲测有效 _ 潘子夜个人博客 (panziye.com)
PS C:\Users\duanxiongwen\Downloads\MeetingWeb-master\MeetingWeb-master> git config --global --unset url."https://".insteadOf
(1)
git config --global url."https://".insteadOf git:// ---用https 代替https,因为我测试了下
git ls-remote -h -t https://github.com/adobe-webplatform/eve.git是可以成功的!!只是
git://github.com/adobe-webplatform/eve.git不能成功
(2) 设置一个可用的registry
npm config set registry http://r.cnpmjs.org/
(3) 去掉不可用的代理
npm config edit 去掉昨天配置的 proxy=127.0.0.1:port
成功!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。