错误code128:npm ERR! An unknown git error occurred command git --no-replace-objects ls-remote ssh://

这篇具有很好参考价值的文章主要介绍了错误code128:npm ERR! An unknown git error occurred command git --no-replace-objects ls-remote ssh://。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

目录

一、遇到问题

二、出现问题的原因 

三、解决办法

四、类似的错误


一、遇到问题

在使用命令npm install下载依赖项的时候就遇到了这个问题,切换了国内的淘宝源也下载不了。

错误code128:npm ERR! An unknown git error occurred command git --no-replace-objects ls-remote ssh://,# 前端Bug,npm,git,ssh,http,切换

npm ERR! code 128
npm ERR! An unknown git error occurred
npm ERR! command git --no-replace-objects ls-remote ssh://git@github.com/nhn/raphael.git
npm ERR! git@github.com: Permission denied (publickey).
npm ERR! fatal: Could not read from remote repository.
npm ERR!
npm ERR! Please make sure you have the correct access rights
npm ERR! and the repository exists.

npm ERR! A complete log of this run can be found in:
npm ERR!     D:\IT_base\node16\node_cache\_logs\2023-09-16T05_03_02_827Z-debug-0.log

二、出现问题的原因 

 git上面拉取东西时候出现了问题

三、解决办法

1.项目里面执行这个命令

git config --global url."https://".insteadOf ssh://git@

 这个命令的作用是将 Git 在使用 SSH 克隆(或拉取)仓库时的默认 URL 协议从 SSH 更改为 HTTPS。这是一个 Git 的配置设置,它可以对你的 Git 操作产生影响。

通常情况下,当你使用 SSH 协议克隆或拉取 Git 仓库时,URL 的格式是 ssh://git@github.com/username/repo.git,其中 git@github.com 是 SSH URL。但有时,你可能希望将 Git 操作重定向到使用 HTTPS 协议,例如 https://github.com/username/repo.git,这样可以避免 SSH 密钥的设置和管理。

使用 git config 命令设置 url."https://".insteadOf ssh://git@ 后,Git 将默认使用 HTTPS 协议而不是 SSH 协议来访问远程仓库,以便执行克隆、拉取等操作。这对于那些不想或不需要使用 SSH 密钥的情况非常有用。

注意,这个配置是全局配置,会影响你系统中的所有 Git 仓库。如果你只想在特定仓库中使用 HTTPS 协议,你可以在该仓库的 .git/config 文件中进行配置,而不是全局配置。

2.执行下载依赖项的命令

npm install

这样依赖项就下载成功了

错误code128:npm ERR! An unknown git error occurred command git --no-replace-objects ls-remote ssh://,# 前端Bug,npm,git,ssh,http,切换

 

四、类似的错误

解决npm install遇到的问题:Error while executing:_云边的快乐猫的博客-CSDN博客文章来源地址https://www.toymoban.com/news/detail-719636.html

到了这里,关于错误code128:npm ERR! An unknown git error occurred command git --no-replace-objects ls-remote ssh://的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 解决npm install下载不下来包依赖,提示:An unknown git error occurred

    将git上的项目拉到本地之后,进行npm i的时候发现下载不下来包依赖,并提示:An unknown git error occurred,如图所示: 解决办法: 1、使用下面的命令,把地址里的 ​​ssh://git@​​​ 换成 ​​https://​​ git config --global url.“https://”.insteadOf ssh://git@ 2、重新npm i 就可以了 npm i 如

    2024年02月11日
    浏览(44)
  • npm ERR! exited with error code: 128终极解决办法

    报错信息:npm ERR! E:toolsGittGitcmdgit.EXE ls-remote -h -t https://github.com/nhn/raphael.git npm ERR! npm ERR! fatal: unable to access \\\'https://github.com/nhn/raphael.git/\\\': OpenSSL SSL_read: Connection was reset, errno 10054 npm ERR! npm ERR! exited with error code: 128 升级npm,配置https都不行  git config --global url.\\\"https://\\\".instea

    2024年02月07日
    浏览(63)
  • vscode执行npm install 报错(npm ERR! code 128...raphael.git...)的解决办法

    报错信息如下: 注意:以下命令在终端执行后,会在 C:Users用户名 目录下的.gitconfig文件中保存相应内容,如果某条内容报错,可手动删除.gitconfig中的内容后重新执行。 方法1 在项目目录下创建文件: .npmrc ,然后在里面添加如下内容: 接着在vscode的终端执行如下命令: 方

    2024年02月10日
    浏览(51)
  • Error code: 128 通常是Git返回的错误代码

    这个错误信息表明在从GitHub克隆存储库时发生了问题。 导致错误的原因可能是网络或, 未初始化为 Git 仓库 者是其他原因。 我采用解决方法:直接clone到目标仓库,然后重新运行终端就可以了。 git clone https://github.com/Stability-Al/stablediffusion.git \\\"D:AIstable-diffusion-webuirepositori

    2024年03月18日
    浏览(68)
  • selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred 报错

    selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: The instrumentation process cannot be initialized. Make sure the application under test does not crash and investigate the logcat output. Stacktrace: UnknownError: An unknown server-side error occurred while processing t

    2024年02月16日
    浏览(57)
  • 如何解决错误:An error occurred.问题

    在使用openai大型Chat GPT对话过程中经常出现如下提示 An error occurred. If this issue persists please contact us through our help center at help.openai.com 这是触发了openai的封控机制导致。 解决办法: 解决访问提示Access denied等问题

    2024年02月11日
    浏览(51)
  • selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while

    运行appium来测试用例的时候,报错:   解决思路: 这个报错是你掉了一些appium不支持的方法 driver.close()这个是selenium中的,你换成driver.close_app()或者driver.quit()就正常 结果:成功解决!

    2024年02月11日
    浏览(49)
  • appium踩坑(VIVO手机)报错:An unknown server-side error occurred while processing the command.Original error

    appium报错:Failed to create session. An unknown server-side error occurred while proces....... 1、appium管理员身份运行,重新填写配置中的ANDROID_HOME和JAVA_HOME 2、appium地址从127.0.0.1 改为0.0.0.0 3、运行Inspector host地址改为localhost其他保持不变 可成功运行Inspector,不知道哪一步解决的,总之在127.0

    2024年04月28日
    浏览(43)
  • Appium如何解决报错:An unknown server-side error occurred while processing the command. Original error: Er

    使用appium客户端连接小米手机失败,完整报错信息如下: An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: ‘Command ‘{已隐藏}/Library/Android/sdk/platform-tools/adb -P 5037 -s fca2117a shell settings delete global hidden_api_policy_pre_p_apps’ exited with c

    2024年04月15日
    浏览(63)
  • 【Appium】Failed to create session. An unknown server-side error occurred while processing the command

    报错信息: 遇到这些错误的时候,我们要把 手机开发者模式的这三个选项都打开 : 因为它要安装一个软件: 第一次调试的时候手机端会弹出来个密钥确定的窗口,大概意思就是是否同意这个计算机对自己的电脑进行调试,要点同意。 然后 手机一定要安装好要进行调试的软

    2024年02月16日
    浏览(63)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包