当前位置:   article > 正文

解决angular安装 unable to access 'https:github...' Empty reply from server

ecmderr failed to execute "git ls-remote --tags

解决方案:指定https方式,使用代理

错误提示:

  1. $ npm install
  2. ......
  3. bower angular-mocks#1.5.x ECMDERR Failed to execute "git ls-remote --tags --heads
  4. https://github.com/angular/bower-angular-mocks.git", exit code of #128 fatal: unable to access
  5. 'https://github.com/angular/bower-angular-mocks.git/': Empty reply from server
  6. Additional error details:
  7. fatal: unable to access 'https://github.com/angular/bower-angular-mocks.git/': Empty reply from server
  8. 复制代码

分析:这段脚本执行区git拉取代码所用到(默认用ssh)的端口被禁止使用.应该改用https的方式进行下载.

最后在堆栈溢出找到这个方案

  1. git config --global url."https://".insteadOf git://
  2. 复制代码

再次执行 这个问题没再出现

  1. $ npm install
  2. 复制代码

ps: 这个https方式有几率会报错

分析:这里是被墙了
错误提示
  1. $ npm install
  2. ......
  3. ECMDERR Failed to execute "git ls-remote --tags --heads
  4. https://github.com/angular/bower-angular-animate.git", exit code of #128 fatal: unable to access
  5. 'https://github.com/angular/bower-angular-animate.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
  6. 复制代码

分析原因还是因为https的方式,撞在了墙上.git默认是不走系统代理的,所以我们需要指定代理来使用https拉取github代码.

解决方案:配置代理

代理配置方法如下(当然啦,最后那个 url 改成自己的代理地址和端口):

  1. git config --global http.proxy http://127.0.0.1:1080
  2. git config --global https.proxy https://127.0.0.1:1080
  3. 复制代码
撤销代理:
  1. git config --global --unset http.proxy
  2. git config --global --unset https.proxy
  3. 复制代码
如果要查当前的代理配置,分别是:
  1. git config --global --get http.proxy
  2. git config --global --get https.proxy
  3. 复制代码

最后成功运行

  1. $ npm install
  2. ......
  3. angular-resource#1.5.11 app\bower_components\angular-resource
  4. └── angular#1.5.11
  5. npm notice created a lockfile as package-lock.json. You should commit this file.
  6. npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
  7. npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted
  8. {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
  9. up to date in 106.584s
  10. 复制代码
参考

为 git 设置 http https 代理

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/983154
推荐阅读
相关标签
  

闽ICP备14008679号