要签出"master“以外的分支,请使用-b指定它:
$ repo init -u git://android.git.kernel.org/platform/manifest.git -b <froyo>我应该写什么作为Android3.0 HoneyComb的'-b‘选项参数,以便从源代码库中签出它?
发布于 2011-08-11 16:47:41
这是一个非常简单的答案。
Google has not released the honeycomb source,所以您无法克隆它。他们可能会使用never release it。然而,他们最终还是向release the Ice Cream Sandwich source做出了承诺。
然而,Honeycomb sources which are GPL和可以与姜饼的其余版本一起构建的版本已经发布。如果您执行以下操作:
$ repo init -u git://android.git.kernel.org/platform/manifest.git -b gingerbread您将获得GPL许可的Honeycomb部分的姜饼+ AOSP补丁+ Honeycomb源代码(这是相当少的。)
https://stackoverflow.com/questions/6380226
复制相似问题