2

我正在尝试下载 android 源代码,为此我正在关注 source.android.com 上提供的官方文档,使用命令:-

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

或者

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

但我收到以下错误:-

fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle
fatal: error [Errno -2] Name or service not known

我无法弄清楚我做错了什么!任何铅表示赞赏。

更新

我继续执行以下命令:-

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

然后执行repo sync,一切正常,但最后我得到了这个错误:-

100 10.8G  100 10.8G    0     0   259k      0 12:12:36 12:12:36 --:--:--  895k
remote: Sending approximately 10.88 GiB ...
remote: Counting objects: 46, done
remote: Finding sources: 100% (40/40)
error: RPC failed; result=56, HTTP code = 200 | 915.00 KiB/s      
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
remote: Sending approximately 10.88 GiB ...
remote: Counting objects: 46, done
remote: Finding sources: 100% (40/40)
error: RPC failed; result=56, HTTP code = 200 | 881.00 KiB/s      
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
error: Cannot fetch device/lge/hammerhead-kernel

对此的任何线索表示赞赏!

4

1 回答 1

3

就在几个小时前,已经有 4 次提交到 git-repo,都是关于 clone.bundle cookie 的,除了第一个。如果您的问题仍然存在,请使用在今天提交之前的 stable 分支。我昨天设置了一个服务器,所以我知道它工作正常。在这 4 个之前的最后一次提交是从 12 天前开始的。为了使用特定的分支、标签或提交,您可以使用 --repo-branch 并且您也可以使用 --repo-url 从另一个网站下载 git-repo,但您不需要这样做,只需执行此操作即可使用今天提交之前的版本。.repo首先,通过运行以下命令从工作目录中删除子目录,确保删除任何错误或有问题的版本和部分信息:

rm -rf .repo

然后运行:

repo init -u https://android.googlesource.com/platform/manifest -b android-5.0.2_r1 --repo-branch stable

于 2015-01-03T09:00:10.667 回答