尝试下载源代码时 Android repo init 失败

发布于 2024-12-20 07:22:32 字数 863 浏览 1 评论 0原文

我按照一些指南如何下载 Android 源代码。

http://omappedia.org/wiki/Android_Getting_Started#Accessing_Source_Codehttp://source.android.com/source/downloading.html

我是能够下载存储库并使其可执行。但之后我使用此命令:

repo init -u https://android.googlesource.com/platform/manifest

repo init -u git://git.omapzoom.org/ platform/omapmanifest.git -b froyo

但这两个命令都会给出以下错误:

致命:分支“稳定”尚未签名

有人知道如何解决此问题,所以我可以下载源代码吗?

我已经尝试重新安装存储库。建议在此链接 Android Repo init failed

我位于代理后面,但我使用命令让代理工作。

I followed some guide how to download the source code of Android.

http://omappedia.org/wiki/Android_Getting_Started#Accessing_Source_Code
and
http://source.android.com/source/downloading.html

I'm able to download repo and make it executable. But after that I use this command:

repo init -u https://android.googlesource.com/platform/manifest

or

repo init -u git://git.omapzoom.org/platform/omapmanifest.git -b froyo

But both commands give the following error:

Fatal: branch 'stable' has not been signed

Anyone knows how to fix this, so I can download the source code?

I already tried to re-install repo. Suggested on this link Android Repo init failed

I'm behind a proxy, but I used commands to let the proxy work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

墨小沫ゞ 2024-12-27 07:22:32

解决了编辑 repo 文件中的 REPO_URL 定义,将 https 更改为 http 的问题。

Solved editing REPO_URL definition in repo file, changing https to http.

何时共饮酒 2024-12-27 07:22:32

不仅将 repo 文件中的 REPO_URL 定义从 https 更改为 http,您还需要更改命令。示例:

repo init -u http://android.googlesource.com/platform/manifest

如果仍然出现错误,请使用以下命令尝试最新的 repo 工具

repo init -u http://android.googlesource.com/platform/manifest --repo-url=https://android.googlesource.com/tools/repo

repo init -u http://android.googlesource.com/platform/manifest --repo-url=http://android.googlesource.com/tools/repo

Not only change REPO_URL definition in repo file from https to http, you also need to change in your command. Example:

repo init -u http://android.googlesource.com/platform/manifest

If you still get error, try latest repo tool by use the command bellow

repo init -u http://android.googlesource.com/platform/manifest --repo-url=https://android.googlesource.com/tools/repo

or

repo init -u http://android.googlesource.com/platform/manifest --repo-url=http://android.googlesource.com/tools/repo
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文