在OE BitBake中获取失败

时间:2016-10-20 12:17:30

标签: git github bitbake openembedded

BitBake在内部使用以下git命令来获取:

$ git -c core.fsyncobjectfiles=0 clone --bare --mirror git://github.com/google/leveldb.git

Error Log:
    $<50>ERROR: Fetcher failure: Fetch command failed with exit code 128, output:
Cloning into bare repository '/home/rajeshgopu/github.com.google.leveldb.git'...
fatal: Project not found: github.com/google/leveldb
fatal: Could not read from remote repository.

如果我手动尝试相同的命令,则失败。我在下面编辑它然后它工作:

git -c core.fsyncobjectfiles=0 clone --bare --mirror git@github.com:google/leveldb.git

如何在.gitconfig中配置此功能,而不是在所有项目中手动更改?

我尝试了以下操作但得到了同样的错误:

[url "git@github.com:"]
    insteadOf = git://github.com

1 个答案:

答案 0 :(得分:1)

在〜/ .gitconfig

中添加以下内容后,它可以正常工作
[url "https://github.com"]
         insteadOf = git://github.com