鲍尔安装库问题

Bower install Libraries Issues

本文关键字:问题 安装      更新时间:2023-09-26

我正在使用bower在我的项目中安装依赖项和各种库。但是我遇到了一个致命的错误。网址的 git:// 部分似乎被替换为

我正在使用Mac OS X终端进行命令。

有什么解决方案吗?

pdc1-4s6zyr1:~ administrator$ bower install **git://github.com/jquery/jquery.git**
bower not-cached    git://github.com/jquery/jquery.git#*
bower resolve       git://github.com/jquery/jquery.git#*
bower ECMDERR       Failed to execute "git ls-remote --tags --heads git://github.com/jquery/jquery.git", exit code of #128
Additional error details:
fatal: '.insteadofgithub.com/jquery/jquery.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.

谢谢安吉特·坦纳

打开你的终端并写下这个:

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

这将强制 git 替换协议。

此外,如果您在bower.json中包含github存储库,则可以尝试将文件中git URL的"git://"替换为"https://"。

该问题的解决方案是:

查找 .gitconfig 文件

 [user]
        name = 1wQasdTeedFrsweXcs234saS56Scxs5423
        email = ankittanna@hotmail.com
    [credential]
        helper = osxkeychain
    [url ""]
        insteadOf = git://
    [url "https://"]
    [url "https://"]
        insteadOf = git://

将有一个空白的 url=" 将其替换为 url="https://"

[user]
    name = 1wQasdTeedFrsweXcs234saS56Scxs5423
    email = ankittanna@hotmail.com
[credential]
    helper = osxkeychain
[url "https://"]
    insteadOf = git://
[url "https://"]
[url "https://"]
    insteadOf = git://

这将:)工作

快乐的鲍尔-英