On Sun, Oct 25, 2009 at 04:40:02PM -0500, Rob Landley wrote: > On Sunday 25 October 2009 16:13:25 Mike Frysinger wrote: > > On Sunday 25 October 2009 16:14:17 Rob Landley wrote: > > > On Monday 12 October 2009 12:38:07 Bernhard Reutner-Fischer wrote: > > > > I've pushed a couple of fixes from master to the 0_9_30 branch in > > > > preparation of a 0.9.30.2 bugfix release. > > > > > > Ok, I think I've exhausted the menu on the left. How do I test this > > > thing? > > > > use `git branch` to see all branches > > $ cd ~/uclibc/git > $ git branch > * master > $ git pull > Already up-to-date. > $ cd .. > $ git clone git://uclibc.org/uClibc walrus > Initialized empty Git repository in /home/landley/uclibc/walrus/.git/ > remote: Counting objects: 84765, done. > remote: Compressing objects: 100% (20048/20048), done. > remote: Total 84765 (delta 66704), reused 81905 (delta 64091) > Receiving objects: 100% (84765/84765), 15.74 MiB | 154 KiB/s, done. > Resolving deltas: 100% (66704/66704), done. > $ cd walrus > $ git branch > * master > $ cd .. > $ rm -rf walrus > > > and use `git checkout` to check out a > > branch/tag/ref/whatever > > And if my clone of the repository hasn't got this branch, and apparently > never > had this branch, the magic incantation I do to get the branch is...? (A > fresh > "git clone git://uclibc.org/uClibc" didn't do it...)
I think something like $ git remote update [snip] $ git branch -r origin/0_9_28 origin/0_9_29 origin/0_9_30 origin/HEAD -> origin/master origin/master origin/nptl origin/nptl_merge $ git checkout -b my-0_9_30 origin/0_9_30 should do it. Regards, -- Alex _______________________________________________ uClibc mailing list [email protected] http://lists.busybox.net/mailman/listinfo/uclibc
