How can I switch to a particular version of Android after I checkout out the source code?
If I check out the android source code like this:
repo init -u git://android.git.kernel.org/platform/manifest.git
开发者_如何学Python
How can I switch to a particular version of android ? e.g. 1.6?
Thank you.
From 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
精彩评论