如何使用TortoiseGit下载android源代码


2

如何使用TortoiseGit下载android源代码?这里解释使用Repo但我使用TortoiseGit。

EDIT1
@heavyd,如果我这样做,我收到此错误(我的本地文件夹被删除!)。我也试过"D:\android-source\"作为本地文件夹,但仍然是同样的错误。(我在"D:\android-source\"文件夹中尝试这些步骤):

git.exe clone  --progress -v  "git://android.git.kernel.org/platform/manifest.git" "D:\android-source\manifest"

Cloning into D:\android-source\manifest...
android.git.kernel.org[0: 149.20.4.77]: errno=No such file or directory
fatal: unable to connect a socket (No such file or directory)

EDIT2
好的,似乎android.git.kernel.org已经关闭了一个月!请参阅:http//groups.google.com/group/android-platform/browse_thread/thread/bd008b9fc907250b/f9bb28b02a32e8dc?lnk=gst&q=kernel.org#f9bb28b02a32e8dc

Answers:


3

android.git.kernel.org由于最近的Kernel.org闯入,谷歌的请求暂时取消了Git服务器。

同时,您可以使用Github托管的镜像:

git clone git://github.com/android/platform_manifest.git manifest

有关所有存储库的列表,请参阅https://github.com/android

当kernel.org重新启动时,您需要做的就是git remote set-url <x>切换回主存储库。


2
  1. 打开要下载源的文件夹以进行存储。
  2. 右键单击并选择“Git Clone”
  3. 输入URL:git://android.git.kernel.org/platform/manifest.git
  4. 单击确定

在那之后,它只是正常的Git。使用服务器中的最新树,创建和签出分支等来更新本地树。


如果我这样做,我会收到错误。看我的编辑。任何想法?
Caner

它可能是公司防火墙,还是防病毒软件?
Caner

好吧,似乎android.git.kernel.org已经关闭了一个月!请参阅:groups.google.com/group/android-platform/browse_thread/thread / ...
Caner
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.