<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/git-format-patch.sh, branch gitk-resize-error</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=gitk-resize-error</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=gitk-resize-error'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2006-05-21T09:48:21Z</updated>
<entry>
<title>git-format-patch: now built-in.</title>
<updated>2006-05-21T09:48:21Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-05-21T09:48:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=685637381a967cd7388495f97b12b7cf177abbb4'/>
<id>urn:sha1:685637381a967cd7388495f97b12b7cf177abbb4</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Convert some "apply --summary" users to "diff --summary".</title>
<updated>2006-05-14T23:29:20Z</updated>
<author>
<name>Sean</name>
<email>seanlkml@sympatico.ca</email>
</author>
<published>2006-05-14T12:16:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=9d76812b42009069aa3ff8f29e51b5150aa04e8e'/>
<id>urn:sha1:9d76812b42009069aa3ff8f29e51b5150aa04e8e</id>
<content type='text'>
Signed-off-by: Sean Estabrooks &lt;seanlkml@sympatico.ca&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-format-patch: Use rfc2822 compliant date.</title>
<updated>2006-04-30T07:32:25Z</updated>
<author>
<name>Huw Davies</name>
<email>huw@codeweavers.com</email>
</author>
<published>2006-04-29T15:50:28Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=262a6ef76a1dde97ab50d79fa5cd6d3f9f125765'/>
<id>urn:sha1:262a6ef76a1dde97ab50d79fa5cd6d3f9f125765</id>
<content type='text'>
Signed-off-by: Huw Davies &lt;huw@codeweavers.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Shell utilities: Guard against expr' magic tokens.</title>
<updated>2006-04-13T23:45:48Z</updated>
<author>
<name>Mark Wooding</name>
<email>mdw@distorted.org.uk</email>
</author>
<published>2006-04-13T22:01:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f327dbced25a3c6fcc0b84d2d6adffa9343b09f0'/>
<id>urn:sha1:f327dbced25a3c6fcc0b84d2d6adffa9343b09f0</id>
<content type='text'>
Some words, e.g., `match', are special to expr(1), and cause strange
parsing effects.  Track down all uses of expr and mangle the arguments
so that this isn't a problem.

Signed-off-by: Mark Wooding &lt;mdw@distorted.org.uk&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Allow format-patch to attach patches</title>
<updated>2006-03-07T01:04:53Z</updated>
<author>
<name>Mike McCormack</name>
<email>mike@codeweavers.com</email>
</author>
<published>2006-03-06T13:12:12Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=19bb732728e0e58790b7045250ed47d4831fade5'/>
<id>urn:sha1:19bb732728e0e58790b7045250ed47d4831fade5</id>
<content type='text'>
The --attach patch to git-format-patch to attach patches instead of
inlining them.  Some mailers linewrap inlined patches (eg. Mozilla).

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Allow adding arbitary lines in the mail header generated by format-patch.</title>
<updated>2006-03-07T01:04:07Z</updated>
<author>
<name>Mike McCormack</name>
<email>mike@codeweavers.com</email>
</author>
<published>2006-03-06T13:10:21Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=00333ca35c5986e44d4cd4fd59433200d916f77e'/>
<id>urn:sha1:00333ca35c5986e44d4cd4fd59433200d916f77e</id>
<content type='text'>
Entries may be added to the config file as follows:

[format]
         headers = "Organization: CodeWeavers\nTo: wine-patches
&lt;wine-patches@winehq.org&gt;\n"

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-format-patch: Always add a blank line between headers and body.</title>
<updated>2006-02-27T19:01:47Z</updated>
<author>
<name>Alexandre Julliard</name>
<email>julliard@winehq.org</email>
</author>
<published>2006-02-27T13:09:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f891cb3fd6b3c2871c1a15e122366e412428204c'/>
<id>urn:sha1:f891cb3fd6b3c2871c1a15e122366e412428204c</id>
<content type='text'>
If the second line of the commit message isn't empty, git-format-patch
needs to add an empty line in order to generate a properly formatted
mail. Otherwise git-rebase drops the rest of the commit message.

Signed-off-by: Alexandre Julliard &lt;julliard@winehq.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>format-patch: pretty-print timestamp correctly.</title>
<updated>2006-02-22T02:13:32Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-02-22T02:13:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=fab5de7936f0cc086836a38d2de4374c3df223b4'/>
<id>urn:sha1:fab5de7936f0cc086836a38d2de4374c3df223b4</id>
<content type='text'>
Perl is not C and does not truncate the division result.  Arghh!

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>format-patch: Remove last vestiges of --mbox option</title>
<updated>2006-02-07T10:09:55Z</updated>
<author>
<name>Andreas Ericsson</name>
<email>ae@op5.se</email>
</author>
<published>2006-02-07T09:37:54Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=66f04f38f42024dceb1679fc4d672de3746cf237'/>
<id>urn:sha1:66f04f38f42024dceb1679fc4d672de3746cf237</id>
<content type='text'>
Don't mention it in docs or --help output.
Remove mbox, date and author variables from git-format-patch.sh.

Use DESCRIPTION text from man-page to update LONG_USAGE output. It's
a bit silly to have two texts saying the same thing in different words,
and I'm too lazy to update both.

Signed-off-by: Andreas Ericsson &lt;ae@op5.se&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Fix git-format-patch -s to include a Signed-off-by: line...</title>
<updated>2006-01-25T23:10:35Z</updated>
<author>
<name>Eric W. Biederman</name>
<email>ebiederm@xmission.com</email>
</author>
<published>2006-01-25T20:03:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=fc5be4fdaa063a667d17ae40e4ad130e2177b0f8'/>
<id>urn:sha1:fc5be4fdaa063a667d17ae40e4ad130e2177b0f8</id>
<content type='text'>
In the last round of bug fixes the signed-off-by line was still be
generated but it was not including a signed-off-by line :(

Signed-off-by: Eric W. Biederman &lt;ebiederm@xmission.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
