All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ] how to generate a multi-part patch?
@ 2007-03-13  7:46 Robert P. J. Day
  2007-03-13 10:31 ` Ahmed S. Darwish
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Robert P. J. Day @ 2007-03-13  7:46 UTC (permalink / raw)
  To: kernel-janitors


  what's the canonical way to generate a multi-part patch?  that is,
starting from "PATCH [0/n]" and so on.  a list of bullet points will
do fine, i can take it from there.

  from what i read, i'd use quilt to generate the patch set, then
"git-send-email"?  is that it?  thanks.

rday

-- 
====================================
Robert P. J. Day
Linux Consulting, Training and Annoying Kernel Pedantry
Waterloo, Ontario, CANADA

http://fsdev.net/wiki/index.php?title=Main_Page
====================================
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [KJ] how to generate a multi-part patch?
  2007-03-13  7:46 [KJ] how to generate a multi-part patch? Robert P. J. Day
@ 2007-03-13 10:31 ` Ahmed S. Darwish
  2007-03-13 10:32 ` Randy.Dunlap
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Ahmed S. Darwish @ 2007-03-13 10:31 UTC (permalink / raw)
  To: kernel-janitors

On Tue, Mar 13, 2007 at 03:46:01AM -0400, Robert P. J. Day wrote:
> 
>   what's the canonical way to generate a multi-part patch?  that is,
> starting from "PATCH [0/n]" and so on.  a list of bullet points will
> do fine, i can take it from there.
>
>   from what i read, i'd use quilt to generate the patch set, then
> "git-send-email"?  is that it?  thanks.

I didn't use quilt or git-send-mail before. When I sent the array_size 
series I prepaired all the mails and put them in a =not-sent-mail mbox. 

After normally sending the first mail [00], I opened the =sent_mail mbox 
and hit reply (to let mutt put the `In-Reply-To header' automatically) 
then it's just the matter of chosing one of the not sent yet mails to 
be sent.

This way is ofcourse weak for very large patch serieses, but it just do 
the job for small sized sets ;).

Regards,

-- 
Ahmed S. Darwish
http://darwish.07.googlepages.com

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [KJ] how to generate a multi-part patch?
  2007-03-13  7:46 [KJ] how to generate a multi-part patch? Robert P. J. Day
  2007-03-13 10:31 ` Ahmed S. Darwish
@ 2007-03-13 10:32 ` Randy.Dunlap
  2007-03-13 12:43 ` burns.ethan
  2007-03-13 13:18 ` Jesper Juhl
  3 siblings, 0 replies; 5+ messages in thread
From: Randy.Dunlap @ 2007-03-13 10:32 UTC (permalink / raw)
  To: kernel-janitors

On Tue, 13 Mar 2007, Robert P. J. Day wrote:

>
>   what's the canonical way to generate a multi-part patch?  that is,
> starting from "PATCH [0/n]" and so on.  a list of bullet points will
> do fine, i can take it from there.
>
>   from what i read, i'd use quilt to generate the patch set, then
> "git-send-email"?  is that it?  thanks.

As usual, there isn't only one answer for this.  You can use git tools
for the patches and email, or you can use quilt tools for the patches
and email (see 'quilt mail -h').

Or you can use quilt or your own patch management for the patch
series and then use sendpatchset by Paul Jackson:
  http://www.speakeasy.org/~pj99/sgi/sendpatchset

-- 
~Randy
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [KJ] how to generate a multi-part patch?
  2007-03-13  7:46 [KJ] how to generate a multi-part patch? Robert P. J. Day
  2007-03-13 10:31 ` Ahmed S. Darwish
  2007-03-13 10:32 ` Randy.Dunlap
@ 2007-03-13 12:43 ` burns.ethan
  2007-03-13 13:18 ` Jesper Juhl
  3 siblings, 0 replies; 5+ messages in thread
From: burns.ethan @ 2007-03-13 12:43 UTC (permalink / raw)
  To: kernel-janitors

On Tue, Mar 13, 2007 at 03:46:01AM -0400, Robert P. J. Day wrote:
>   what's the canonical way to generate a multi-part patch?  that is,
> starting from "PATCH [0/n]" and so on.  a list of bullet points will
> do fine, i can take it from there.
>
>   from what i read, i'd use quilt to generate the patch set, then
> "git-send-email"?  is that it?  thanks.

If you make your changes in a git repo, you can always use git-format-patch to
make the patch set from a set of commits.

		--Ethan
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [KJ] how to generate a multi-part patch?
  2007-03-13  7:46 [KJ] how to generate a multi-part patch? Robert P. J. Day
                   ` (2 preceding siblings ...)
  2007-03-13 12:43 ` burns.ethan
@ 2007-03-13 13:18 ` Jesper Juhl
  3 siblings, 0 replies; 5+ messages in thread
From: Jesper Juhl @ 2007-03-13 13:18 UTC (permalink / raw)
  To: kernel-janitors

On 13/03/07, Robert P. J. Day <rpjday@mindspring.com> wrote:
>
>   what's the canonical way to generate a multi-part patch?  that is,
> starting from "PATCH [0/n]" and so on.  a list of bullet points will
> do fine, i can take it from there.
>
>   from what i read, i'd use quilt to generate the patch set, then
> "git-send-email"?  is that it?  thanks.
>
Low tech approach, but this usually works for me:

 1) Figure out the things I want to change and come up with a logical order.
 2) Make the first change and generate a diff, make next change, make
new diff etc.
 3) Start up email client, read in patch file inline, write text and
subject with PATCH [1/n], send
 4) Repeat step 3 until no more patches.

-- 
Jesper Juhl <jesper.juhl@gmail.com>
Don't top-post  http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please      http://www.expita.com/nomime.html
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-03-13 13:18 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-13  7:46 [KJ] how to generate a multi-part patch? Robert P. J. Day
2007-03-13 10:31 ` Ahmed S. Darwish
2007-03-13 10:32 ` Randy.Dunlap
2007-03-13 12:43 ` burns.ethan
2007-03-13 13:18 ` Jesper Juhl

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.