欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Command failed: git -c core.longpaths=true config --get remote.origin.url

程序员文章站 2022-06-29 07:52:31
「Unable to Connect to GitHub.com For Cloning」 Error: Command failed: git -c core.longpaths=true config --get remote.origin.url git@gitee.com: Permissi ......
「unable to connect to github.com for cloning」
error: command failed: git -c core.longpaths=true config --get remote.origin.url
git@gitee.com: permission denied (publickey).
此处原因应该是因为网络无法透过git://方式将package download下来
github/gitee clone/push等权限不足可以尝试重新配置密钥或更换git的down方式

清除缓存: npm cache clear
告诉git download方式为: git config --global url."https://".insteadof git:// 

如果执行以上两条还有warn警告,可尝试更新npm版本
更新npm版本:npm install -g npm(npm 新版本中无需使用clear命令)