2
如果我檢查了Android的源代碼是這樣的:在結算源代碼後,如何切換到特定版本的Android?
repo init -u git://android.git.kernel.org/platform/manifest.git
如何切換到Android的特定版本?例如1.6?
謝謝。
如果我檢查了Android的源代碼是這樣的:在結算源代碼後,如何切換到特定版本的Android?
repo init -u git://android.git.kernel.org/platform/manifest.git
如何切換到Android的特定版本?例如1.6?
謝謝。
從http://source.android.com/source/downloading.html:
To check out a branch other than "master", specify it with -b:
$ repo init -u git://android.git.kernel.org/platform/manifest.git -b froyo
所以我可以做一個 '回購的init -u git的... -b升級Froyo' 我做了後 '回購的init -u git的......' – michael