that's really nice.
now if I can just find a way to make repo pick up where it left off in the middle of a huge project like platform/prebuilt when it times out and won't reconnect, or my connection drops... I hate redownloading 900MB of data just because repo has a selective memory after it crashes.
there's a small
repo/git cheatsheet near the bottom of this link.
900MB? Maybe the first set up, but repo sync is very fast...especially if you edit out all the phone you don't need.
Forking and mantaining 101:
Take my android folder located here:
https://github.com/BobZhome/android/blob/gingerbread/default.xml and fork it.
It will show up on your github here:
https://github.com/bigsupersquid
With terminal on your system type: git clone
git@github.com:bigsupersquid/android.git
It will download a android folder.
Edit the default.xml to your liking.
With terminal in that android folder type: git add .
then: git commit -m "what ever you want to say goes here"
then: git push
Your edited default.xml will be on your github
Now setting up your system to use that default.xml file of yours:
With terminal in your ~/android/system folder type: init -u git://github.com/bigsupersquid/android.git -b gingerbread --repo-url=git://github.com/android/tools_repo.git
Then type: repo sync -f
Now your repo sync's should be a lot faster

You probably knew this anyway...it was for the newbies...:-*
Oh and by the way, this post assume you have some basic knowledge...example is changing directories
Bob