I thought I'd supply a quick example on how to check out my work for those who arent used to multi-branch git repositories:
# git clone git://github.com/jwr/weblocks-jwr.git Initialized empty Git repository in /private/tmp/weblocks-jwr/.git/ remote: Counting objects: 8505, done. remote: Compressing objects: 100% (2497/2497), done. remote: Total 8505 (delta 5969), reused 8377 (delta 5883) Receiving objects: 100% (8505/8505), 2.03 MiB | 263 KiB/s, done. Resolving deltas: 100% (5969/5969), done. warning: remote HEAD refers to nonexistent ref, unable to checkout. (this is probably because I don't have a default "master" branch, I think) # git checkout -b my-branch origin/navigation-rewrite warning: You appear to be on a branch yet to be born. warning: Forcing checkout of origin/navigation-rewrite. Branch my-branch set up to track remote branch refs/remotes/origin/navigation-rewrite. Switched to a new branch "my-branch" At this point you'll have all the stuff ready to play with. You can also do a git rebase origin/weblocks-jwr to rebase your branch on top of anything that is in weblocks-jwr as well. You can see there are many remote branches: # git branch -r origin/navigation-rewrite origin/weblocks-jwr origin/yui --J. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/weblocks?hl=en -~----------~----~----~----~------~----~------~--~---
