如果遇到
npm ERR! Error while executing:
npm ERR! D:\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git
npm ERR!
npm ERR! fatal: unable to connect to github.com
的话可以尝试一下把 ”git://“ 换成“https://”
终端:git config --global url."https://".insteadOf git://
4条答案
按热度按时间qlfbtfca1#
试了,没用,wtf
ewm0tg9j2#
this worked for me
#3945
t8e9dugd3#
多謝大大, 可以了
azpvetkf4#
如果遇到 npm ERR! Error while executing: npm ERR! D:\Git\cmd\git.EXE ls-remote -h -t git://github.com/adobe-webplatform/eve.git npm ERR! npm ERR! fatal: unable to connect to github.com 的话可以尝试一下把 ”git://“ 换成“https://” 终端:git config --global url."https://".insteadOf git://
完整命令是:
git config --global url." https://github.com/adobe-webplatform/eve.git".insteadOf ssh:// git@github.com /adobe-webplatform/eve.git
这样之后就可以了。