npm install时候出现git错误
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
npm WARN addRemoteGit Error: Command failed: git config --get remote.origin.url
npm WARN addRemoteGit
npm WARN addRemoteGit at ChildProcess.exithandler (child_process.js:206:12)
npm WARN addRemoteGit at emitTwo (events.js:106:13)
npm WARN addRemoteGit at ChildProcess.emit (events.js:191:7)
npm WARN addRemoteGit at maybeClose (internal/child_process.js:877:16)
npm WARN addRemoteGit at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
npm WARN addRemoteGit git+https://github.com/nhn/raphael.git#2.2.0-c resetting remote /Users/xxxx/.npm/_git-remotes/git-https-github-com-nhn-raphael-git-2-2-0-c-c557a79b because of error: { Error: Command failed: git config --get remote.origin.url
npm WARN addRemoteGit
npm WARN addRemoteGit at ChildProcess.exithandler (child_process.js:206:12)
npm WARN addRemoteGit at emitTwo (events.js:106:13)
npm WARN addRemoteGit at ChildProcess.emit (events.js:191:7)
npm WARN addRemoteGit at maybeClose (internal/child_process.js:877:16)
npm WARN addRemoteGit at Process.ChildProcess._handle.onexit (internal/child_process.js:226:5)
npm WARN addRemoteGit killed: false,
npm WARN addRemoteGit code: 1,
npm WARN addRemoteGit signal: null,
npm WARN addRemoteGit cmd: 'git config --get remote.origin.url' }
|
原因
众所周知的一些伟大的墙的原因,拉取github中文件不顺畅
解决方法
- 执行
npm cache clear
清理缓存
- 执行
git config --global url."https://".insteadOf git://
修改为https方式获取github中内容
- 也可以尝试升级、降级node版本以及升级npm版本
npm install -g npm