A better way of switching between Android source versions

Posted by dan on Stack Overflow See other posts from Stack Overflow or by dan
Published on 2010-04-01T18:32:16Z Indexed on 2010/04/02 4:13 UTC
Read the original article Hit count: 353

Filed under:
|
|
|

I would like to be able to switch between various android releases (1.0, 1.5, 2.0, etc.) and then access them via the file system to copy all files for that version into a tarball. Currently I am just running repo init -u <source URL> -b release-1. to get each version (changing the tag for each version I need). If this was a single git, I could check out the branch/tag I needed and the prject directory would "morph" to reflect then and I could just tar that folder. since the android source is split into multiple git repositories controlled by repo I have not yet found a way to change this other then the method mentioned above.

any suggestions are appreciated.

© Stack Overflow or respective owner

Related posts about android

Related posts about repo