Following directions on Android's main website to pull down sources, I'm looking at this command to initialize repo for the cupcake branch:

repo init -u git://android.git.kernel.org/platform/manifest.git -b cupcake

How can I view all available branches besides cupcake, i.e eclair, donut, etc...?

link|improve this question

feedback

4 Answers

up vote 8 down vote accepted

It doesn't seem to be possible using the "repo" script, but you can query the list of available branches using git:

$ git clone http://android.googlesource.com/platform/manifest.git
$ cd manifest
$ git branch -r
link|improve this answer
4  
Git web interface for the people who don't want to clone the git repository just to see what branches are available. – Cristian Ciupitu Sep 15 '10 at 0:42
feedback

The manifests are already checked out as part of the repo init process. To get a list of available branches, (from your android repo checkout root), use this command:

git --git-dir .repo/manifests/.git/ branch -a
link|improve this answer
1  
It seems that the location of manifests git location has changed: "git --git-dir .repo/manifests.git/ branch -a" – Patrick Tsai Mar 4 at 10:10
feedback

See list of "Codenames, Tags, and Build Numbers" at http://source.android.com/source/build-numbers.html

git access is refused

link|improve this answer
feedback

The quickest way to list available branches without cloning/downloading anything is this one-liner:

$ git ls-remote -h http://android.googlesource.com/platform/manifest.git
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.