<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.3.0</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.3.0</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.3.0'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2006-04-18T20:15:18Z</updated>
<entry>
<title>GIT 1.3.0</title>
<updated>2006-04-18T20:15:18Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-04-18T20:15:18Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=4baff50551545e2b6825973ec37bcaf03edb95fe'/>
<id>urn:sha1:4baff50551545e2b6825973ec37bcaf03edb95fe</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Add git-annotate(1) and git-blame(1)</title>
<updated>2006-04-18T19:06:55Z</updated>
<author>
<name>Jonas Fonseca</name>
<email>fonseca@diku.dk</email>
</author>
<published>2006-03-06T05:24:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=8f2b72a93666afe63ab39b279bbd4088bd5463ca'/>
<id>urn:sha1:8f2b72a93666afe63ab39b279bbd4088bd5463ca</id>
<content type='text'>
[jc: with entries in git.txt]

Signed-off-by: Jonas Fonseca &lt;fonseca@diku.dk&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>diff --stat: make sure to set recursive.</title>
<updated>2006-04-18T18:29:33Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-04-18T18:29:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f56ef54174598d5362d0446c5a560cb5892537c2'/>
<id>urn:sha1:f56ef54174598d5362d0446c5a560cb5892537c2</id>
<content type='text'>
Just like "patch" format always needs recursive, "diffstat"
format does not make sense without setting recursive.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>git-svnimport symlink support</title>
<updated>2006-04-18T09:26:52Z</updated>
<author>
<name>Herbert Valerio Riedel</name>
<email>hvr@gnu.org</email>
</author>
<published>2006-04-17T10:58:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=08ddd4f7649ccf8b9f61c903de420bfd0a8a602e'/>
<id>urn:sha1:08ddd4f7649ccf8b9f61c903de420bfd0a8a602e</id>
<content type='text'>
added svn:special symlink support for access methods other than
direct-http

Signed-off-by: Herbert Valerio Riedel &lt;hvr@gnu.org&gt;
Acked-by: Matthias Urlichs &lt;smurf@smurf.noris.de&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>packed_object_info_detail(): check for corrupt packfile.</title>
<updated>2006-04-18T00:46:07Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-04-18T00:46:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=2855d58079cd56361879cc03f7c769409bb445e5'/>
<id>urn:sha1:2855d58079cd56361879cc03f7c769409bb445e5</id>
<content type='text'>
Serge E. Hallyn noticed that we compute how many input bytes are
still left, but did not use it for sanity checking.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cleanups: remove unused variable from exec_cmd.c</title>
<updated>2006-04-17T22:06:40Z</updated>
<author>
<name>Serge E. Hallyn</name>
<email>serue@us.ibm.com</email>
</author>
<published>2006-04-17T15:14:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=bb996614de4fddfa73286479f3c6a901107a2629'/>
<id>urn:sha1:bb996614de4fddfa73286479f3c6a901107a2629</id>
<content type='text'>
Not sure whether it should be removed, or whether
execv_git_cmd() should return it rather than -1 at bottom.

Signed-off-by: Serge E. Hallyn &lt;serue@us.ibm.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cleanups: prevent leak of two strduped strings in config.c</title>
<updated>2006-04-17T22:06:37Z</updated>
<author>
<name>Serge E. Hallyn</name>
<email>serue@us.ibm.com</email>
</author>
<published>2006-04-17T15:14:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=dafc88b136b508c1c08129b756b6ba23b7c9d341'/>
<id>urn:sha1:dafc88b136b508c1c08129b756b6ba23b7c9d341</id>
<content type='text'>
Config_filename and lockfile are strduped and then leaked in
git_config_set_multivar.

Signed-off-by: Serge E. Hallyn &lt;serue@us.ibm.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cleanups: Remove impossible case in quote.c</title>
<updated>2006-04-17T22:06:25Z</updated>
<author>
<name>Serge E. Hallyn</name>
<email>serue@us.ibm.com</email>
</author>
<published>2006-04-17T15:14:48Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ecc13e73cf96cb14e2403be6538593a167d7ea23'/>
<id>urn:sha1:ecc13e73cf96cb14e2403be6538593a167d7ea23</id>
<content type='text'>
The switch is inside an if statement which is false if
the character is ' '.  Either the if should be &lt;=' '
instead of &lt;' ', or the case should be removed as it could
be misleading.

Signed-off-by: Serge E. Hallyn &lt;serue@us.ibm.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cleanups: Remove unused vars from combine-diff.c</title>
<updated>2006-04-17T22:06:16Z</updated>
<author>
<name>Serge E. Hallyn</name>
<email>serue@us.ibm.com</email>
</author>
<published>2006-04-17T15:14:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=310f8b5b6d17d805cb9a59a20ba747d5f093604a'/>
<id>urn:sha1:310f8b5b6d17d805cb9a59a20ba747d5f093604a</id>
<content type='text'>
Mod_type in particular sure looks like it wants to be used, but isn't.

Signed-off-by: Serge E. Hallyn &lt;serue@us.ibm.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>cleanups: Fix potential bugs in connect.c</title>
<updated>2006-04-17T22:05:33Z</updated>
<author>
<name>Serge E. Hallyn</name>
<email>serue@us.ibm.com</email>
</author>
<published>2006-04-17T15:14:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=da2a95b2a86e8b140d6c5413ea4307e395884135'/>
<id>urn:sha1:da2a95b2a86e8b140d6c5413ea4307e395884135</id>
<content type='text'>
The strncmp for ACK was ACK does not include the final space.
Presumably either we should either remove the trailing space,
or compare 4 chars (as this patch does).

'path' is sometimes strdup'ed, but never freed.

Signed-off-by: Serge E. Hallyn &lt;serue@us.ibm.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
