On Wed, Aug 29, 2007 at 07:34:58PM +0200, Richard Jonsson wrote:
> I can't figure out how to keep up to date with the wireless dev tree.
> I've set up as told by John W. Linville in a post here and use the 
> "everything" branch.
> 
> When browsing the tree at kernel.org I see changes from 24'th of august, 
> but my local copy is from 15'th (when I first fetched) even after "git 
> fetch". What command am I supposed to use?

I think 'git pull' is what you want.  But be warned that wireless-dev
will be rebased from time to time, and pulling won't work across
rebases.

> What is the best practice to apply patches not yet in Linvilles tree?
> 
> My purpose is to test patches from the list and will probably not do 
> patches myself.

The best practice would be to keep an up-to-date copy of Linus' tree
(i.e. linux-2.6) using 'git pull'.  Then when you want to experiment
w/ wireless-dev, you can create a lightweight clone (my terminology)
using a command like this:

   git clone --reference linux-2.6 
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-dev.git 
wireless-dev

Then create a working branch for yourself:

   git checkout -b work origin/everything

Then you can apply patch emails for testing.  Save the patch email
in mbox format, then use this command:

   git applymbox patch.mbox

Then, build-test-patch-repeat... :-)

Hth!

John
-- 
John W. Linville
[EMAIL PROTECTED]
_______________________________________________
Bcm43xx-dev mailing list
Bcm43xx-dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/bcm43xx-dev

Reply via email to