* retrieving a diff from git
@ 2008-10-14 14:51 Folkert van Heusden
2008-10-14 17:01 ` Alex Riesen
0 siblings, 1 reply; 6+ messages in thread
From: Folkert van Heusden @ 2008-10-14 14:51 UTC (permalink / raw)
To: git
Hi,
How would I retrieve the 'kmemcheck' patches from git for the 2.6.27
kernel? I browsed to the url
http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fx86%2Flinux-2.6-tip.git&a=search&h=HEAD&st=commit&s=kmemcheck
but could not find how to retrieve that diff.
Folkert van Heusden
--
Ever wonder what is out there? Any alien races? Then please support
the seti@home project: setiathome.ssl.berkeley.edu
----------------------------------------------------------------------
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: retrieving a diff from git
2008-10-14 14:51 retrieving a diff from git Folkert van Heusden
@ 2008-10-14 17:01 ` Alex Riesen
2008-10-14 17:20 ` Folkert van Heusden
0 siblings, 1 reply; 6+ messages in thread
From: Alex Riesen @ 2008-10-14 17:01 UTC (permalink / raw)
To: Folkert van Heusden; +Cc: git
2008/10/14 Folkert van Heusden <folkert@vanheusden.com>:
> How would I retrieve the 'kmemcheck' patches from git for the 2.6.27
> kernel? I browsed to the url
> http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fx86%2Flinux-2.6-tip.git...
> but could not find how to retrieve that diff.
Well, you can of course just click on "commitdiff" (and "raw" afterwords)
for every commit, but ... Have you considered using Git for that?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: retrieving a diff from git
2008-10-14 17:01 ` Alex Riesen
@ 2008-10-14 17:20 ` Folkert van Heusden
2008-10-14 17:29 ` Alex Riesen
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Folkert van Heusden @ 2008-10-14 17:20 UTC (permalink / raw)
To: Alex Riesen; +Cc: git
> > How would I retrieve the 'kmemcheck' patches from git for the 2.6.27
> > kernel? I browsed to the url
> > http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fx86%2Flinux-2.6-tip.git...
> > but could not find how to retrieve that diff.
> Well, you can of course just click on "commitdiff" (and "raw" afterwords)
> for every commit,
Hmmm the outcome does not apply cleanly to 2.6.27.
> but ... Have you considered using Git for that?
and check out the whole tree using Git? I did consider but then I would
not have all bells and whistles to generate a Debian kernel package.
Folkert van Heusden
--
MultiTail is a versatile tool for watching logfiles and output of
commands. Filtering, coloring, merging, diff-view, etc.
http://www.vanheusden.com/multitail/
----------------------------------------------------------------------
Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: retrieving a diff from git
2008-10-14 17:20 ` Folkert van Heusden
@ 2008-10-14 17:29 ` Alex Riesen
2008-10-14 17:56 ` Matthieu Moy
2008-10-15 10:12 ` Christian Jaeger
2 siblings, 0 replies; 6+ messages in thread
From: Alex Riesen @ 2008-10-14 17:29 UTC (permalink / raw)
To: Folkert van Heusden; +Cc: git
2008/10/14 Folkert van Heusden <folkert@vanheusden.com>:
>> > How would I retrieve the 'kmemcheck' patches from git for the 2.6.27
>> > kernel? I browsed to the url
>> > http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Fx86%2Flinux-2.6-tip.git...
>> > but could not find how to retrieve that diff.
>> Well, you can of course just click on "commitdiff" (and "raw" afterwords)
>> for every commit,
>
> Hmmm the outcome does not apply cleanly to 2.6.27.
That's because the patches are not based on 2.6.27.
>> but ... Have you considered using Git for that?
>
> and check out the whole tree using Git? I did consider but then I would
> not have all bells and whistles to generate a Debian kernel package.
I afraid, that in this particular case you have no other choice, but ask Ingo.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: retrieving a diff from git
2008-10-14 17:20 ` Folkert van Heusden
2008-10-14 17:29 ` Alex Riesen
@ 2008-10-14 17:56 ` Matthieu Moy
2008-10-15 10:12 ` Christian Jaeger
2 siblings, 0 replies; 6+ messages in thread
From: Matthieu Moy @ 2008-10-14 17:56 UTC (permalink / raw)
To: Folkert van Heusden; +Cc: Alex Riesen, git
Folkert van Heusden <folkert@vanheusden.com> writes:
>> but ... Have you considered using Git for that?
>
> and check out the whole tree using Git? I did consider but then I would
> not have all bells and whistles to generate a Debian kernel package.
You can probably clone the Kernel repository, generate a huge diff
with git diff, and apply it to your Debian tree with patch or
git apply, but if the patch serie is not based on your tree, this
won't help with conflicts.
--
Matthieu
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: retrieving a diff from git
2008-10-14 17:20 ` Folkert van Heusden
2008-10-14 17:29 ` Alex Riesen
2008-10-14 17:56 ` Matthieu Moy
@ 2008-10-15 10:12 ` Christian Jaeger
2 siblings, 0 replies; 6+ messages in thread
From: Christian Jaeger @ 2008-10-15 10:12 UTC (permalink / raw)
To: Folkert van Heusden; +Cc: Alex Riesen, git
Folkert van Heusden wrote:
>> Well, you can of course just click on "commitdiff" (and "raw" afterwords)
>> for every commit,
>>
>
> Hmmm the outcome does not apply cleanly to 2.6.27.
>
>
>> but ... Have you considered using Git for that?
>>
>
> and check out the whole tree using Git? I did consider but then I would
> not have all bells and whistles to generate a Debian kernel package.
>
I'm tempted to think that you should move (merge / cherry-pick or
rebase) the relevant changes onto 2.6.27 using Git, and then take the
diff from there (on the theory that Git could reduce the number of
conflicts that you would have to resolve manually, although I'm not sure
how much this is the case); the resulting diff will then apply cleanly
to a 2.6.27 tarball without using Git.
Christian.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-10-15 10:20 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-14 14:51 retrieving a diff from git Folkert van Heusden
2008-10-14 17:01 ` Alex Riesen
2008-10-14 17:20 ` Folkert van Heusden
2008-10-14 17:29 ` Alex Riesen
2008-10-14 17:56 ` Matthieu Moy
2008-10-15 10:12 ` Christian Jaeger
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).