18 Jul
2010
18 Jul
'10
4:14 p.m.
On Sun, Jul 18, 2010 at 6:43 PM, GOUJON Alexandre <ale.goujon(a)gmail.com> wrote:
What I want is to add a comment to some patch before the ... for instance.
Any idea how to do that ?
Just do `git format-patch' with proper parameters and this will result in a series of files, one for each patch in the series. Then edit each file and add the comments you want just before the "---" line. Make sure you leave at least one blank line after the headers. Then you do `git imap-send *.patch' or something like that. There might be an easier way though, but doing it like this lets you review exactly what you are sending before you send it, so I find it pretty convenient. Octavian