下载 Android 源代码时出错
Error while Downloading Android Source code
我正在尝试下载 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
感谢任何线索!!
几个小时前,git-repo 有 4 次提交,除了第一个之外,都是关于 clone.bundle cookie 的。如果您的问题仍然存在,请使用今天提交之前的稳定分支。我昨天安装了一个服务器,所以我知道它工作正常。最后一次提交,在这 4 次之前是 12 天前的。为了使用特定的分支、标签或提交,您可以使用 --repo-branch,您也可以使用 --repo-url 从另一个网站下载 git-repo,但您不应该不需要那样做,只需执行此操作即可使用今天提交之前的版本。首先,通过 运行ning:
从工作目录中删除 .repo
子目录,确保删除任何错误或有问题的版本和部分信息
rm -rf .repo
然后运行:
repo init -u https://android.googlesource.com/platform/manifest -b android-5.0.2_r1 --repo-branch stable
我正在尝试下载 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
感谢任何线索!!
几个小时前,git-repo 有 4 次提交,除了第一个之外,都是关于 clone.bundle cookie 的。如果您的问题仍然存在,请使用今天提交之前的稳定分支。我昨天安装了一个服务器,所以我知道它工作正常。最后一次提交,在这 4 次之前是 12 天前的。为了使用特定的分支、标签或提交,您可以使用 --repo-branch,您也可以使用 --repo-url 从另一个网站下载 git-repo,但您不应该不需要那样做,只需执行此操作即可使用今天提交之前的版本。首先,通过 运行ning:
从工作目录中删除.repo
子目录,确保删除任何错误或有问题的版本和部分信息
rm -rf .repo
然后运行:
repo init -u https://android.googlesource.com/platform/manifest -b android-5.0.2_r1 --repo-branch stable