fatal: remote error: The unauthenticated git protocol on port 9418 is no longer support问题解决
Posted 沛沛老爹
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了fatal: remote error: The unauthenticated git protocol on port 9418 is no longer support问题解决相关的知识,希望对你有一定的参考价值。
背景
因为居家办公,把代码从远程clone下来之后,发现使用npm install一直失败。
提示的错误:fatal: remote error: The unauthenticated git protocol on port 9418 is no longer support
刚开始以为是因为node版本的问题,以前因为版本的问题,把自己折腾的欲仙欲死。node --version之后,发现版本OK。
如果不是版本的问题,那么是什么问题导致的呢?
仔细查看log,发现有个github的链接,点击进去,上面提示因为github的安全机制升级导致的问题。
然后官方给出的对应的解决方案:
解决不再支持端口 9418 上未经身份验证的 git 协议错误。
第一种解决方案是使用 https://github.com 而不是 git://github.com ,问题就可以解决。
第二种解决方案是在项目的 package.json 文件中找到url中的 git:// 并将其替换为 github: 即 git://github.com/…… 替换为 github:。
解决方案
方案一 使用https:替换git:
git config --global url."https://".insteadOf git://
方案二 修改git://github.com/
在 package.json 文件中找到 git:// url 并将其替换为 github:
就像这样:
git://github.com/...
替换成
github:......
基本上问题解决,如果项目中存在package-lock.json文件的话,你需要修改package-lock.json文件
以上是关于fatal: remote error: The unauthenticated git protocol on port 9418 is no longer support问题解决的主要内容,如果未能解决你的问题,请参考以下文章
fatal: The remote end hung up unexpectedly
git提交报异常,fatal: The remote end hung up unexpectedly
Stash Git error “fatal: remote error: CAPTCHA required”
git 出现fatal: The remote end hung up unexpectedly 解决方案
fatal:remote error:Git repository not found
Go 安装 sqlite3 驱动报错 fatal: The remote end hung up unexpectedly