Re: gcapatcch equivalent?

2005-08-07 Thread Jeff Garzik
My gcapatch workalike is git checkout -f mybranch git diff master..HEAD > patch Regards, Jeff - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: gcapatcch equivalent?

2005-08-07 Thread Jeff Garzik
My gcapatch workalike is git checkout -f mybranch git diff master..HEAD patch Regards, Jeff - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at

Re: gcapatcch equivalent?

2005-08-06 Thread Ryan Anderson
On Fri, Aug 05, 2005 at 03:10:17PM -0700, Andrew Morton wrote: > I do this, which mostly works: > > MERGE_BASE=$(git-merge-base $(cat .git/refs/heads/origin ) \ > $(cat .git/refs/heads/$patch_name)) > > cg-diff -r $MERGE_BASE:$(cat

Re: gcapatcch equivalent?

2005-08-06 Thread Ryan Anderson
On Fri, Aug 05, 2005 at 03:10:17PM -0700, Andrew Morton wrote: I do this, which mostly works: MERGE_BASE=$(git-merge-base $(cat .git/refs/heads/origin ) \ $(cat .git/refs/heads/$patch_name)) cg-diff -r $MERGE_BASE:$(cat .git/refs/heads/$patch_name)

Re: gcapatcch equivalent?

2005-08-05 Thread Andrew Morton
Dave Airlie <[EMAIL PROTECTED]> wrote: > > > At KS I asked after a gcapatch command for git.. > > I've got two trees drm-2.6 and linux-2.6, linux-2.6 is latest Linus, so of > course a tree diff gives me all the new patches in linux-2.6 that aren't > in drm-2.6 which isn't what I want.. I want

gcapatcch equivalent?

2005-08-05 Thread Dave Airlie
At KS I asked after a gcapatch command for git.. I've got two trees drm-2.6 and linux-2.6, linux-2.6 is latest Linus, so of course a tree diff gives me all the new patches in linux-2.6 that aren't in drm-2.6 which isn't what I want.. I want gcapatch I'm sure someone has one and I don't

gcapatcch equivalent?

2005-08-05 Thread Dave Airlie
At KS I asked after a gcapatch command for git.. I've got two trees drm-2.6 and linux-2.6, linux-2.6 is latest Linus, so of course a tree diff gives me all the new patches in linux-2.6 that aren't in drm-2.6 which isn't what I want.. I want gcapatch I'm sure someone has one and I don't

Re: gcapatcch equivalent?

2005-08-05 Thread Andrew Morton
Dave Airlie [EMAIL PROTECTED] wrote: At KS I asked after a gcapatch command for git.. I've got two trees drm-2.6 and linux-2.6, linux-2.6 is latest Linus, so of course a tree diff gives me all the new patches in linux-2.6 that aren't in drm-2.6 which isn't what I want.. I want