<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.4.2-rc3</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.4.2-rc3</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.4.2-rc3'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2006-08-03T23:40:20Z</updated>
<entry>
<title>GIT 1.4.2-rc3</title>
<updated>2006-08-03T23:40:20Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T23:40:20Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5a716826a6f7f209777f344143cdd9e4f2903097'/>
<id>urn:sha1:5a716826a6f7f209777f344143cdd9e4f2903097</id>
<content type='text'>
We ended up merging too many stuff after -rc2, so here is
another round of release candidate.  Non bugfixes will be
queued to "next" from now on until a real 1.4.2 happens.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Documentation/git.txt: link git-svn and git-instaweb from the main page.</title>
<updated>2006-08-03T23:28:24Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T23:28:24Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f5fffbd3e878d2be4154174c588a229ca37b04f1'/>
<id>urn:sha1:f5fffbd3e878d2be4154174c588a229ca37b04f1</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jc/sideband'</title>
<updated>2006-08-03T23:02:14Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T23:02:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=962ad61874267b715311b424c767d36c1ab921a6'/>
<id>urn:sha1:962ad61874267b715311b424c767d36c1ab921a6</id>
<content type='text'>
* jc/sideband:
  sideband: do not use color, just say "remote:"
  fetch/clone: mark messages from remote side stand out.
</content>
</entry>
<entry>
<title>sideband: do not use color, just say "remote:"</title>
<updated>2006-08-03T23:01:58Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T23:01:58Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=2de196fec1feba8350f272c567989595901bb67e'/>
<id>urn:sha1:2de196fec1feba8350f272c567989595901bb67e</id>
<content type='text'>
... per suggestion by Andrew.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Show both blob names from "git diff blob1 blob2"</title>
<updated>2006-08-03T21:41:53Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T18:57:11Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=53dd8a9cb524ac2bd99072d86ee31ee48c99d0be'/>
<id>urn:sha1:53dd8a9cb524ac2bd99072d86ee31ee48c99d0be</id>
<content type='text'>
Earlier we deliberately showed only blob1's name because showing
both names labeled the output as a renaming patch.  Now the output
routine (namely, diff.c::resolve_rename_copy()) is taught not to
use pathname comparison to tell if a filepair is a rename, we can
safely do this change.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>diff.c: do not use pathname comparison to tell renames</title>
<updated>2006-08-03T21:41:53Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T19:01:01Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ef677686efe1868432d3cc9d4c41a93b44f3def8'/>
<id>urn:sha1:ef677686efe1868432d3cc9d4c41a93b44f3def8</id>
<content type='text'>
The final output from diff used to compare pathnames between
preimage and postimage to tell if the filepair is a rename/copy.
By explicitly marking the filepair created by diffcore_rename(),
the output routine, resolve_rename_copy(), does not have to do
so anymore.  This helps feeding a filepair that has different
pathnames in one and two elements to the diff machinery (most
notably, comparing two blobs).

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Add a couple of subdirectory tests.</title>
<updated>2006-08-03T21:41:29Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T21:41:29Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c43ce6d603c68f716f83f1da68cc4692202085e0'/>
<id>urn:sha1:c43ce6d603c68f716f83f1da68cc4692202085e0</id>
<content type='text'>
We still have too few of them, but we have to start from somewhere.
The general rule is to make tests easy to debug when run with -v (notice
use of seemingly useless echo everywhere in the new tests).

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>read-tree: shadowed variable fix.</title>
<updated>2006-08-03T20:44:09Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T20:44:09Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a91af794bb4349e0b35d6a9615db31ae2f6ee355'/>
<id>urn:sha1:a91af794bb4349e0b35d6a9615db31ae2f6ee355</id>
<content type='text'>
Recent changes to built-ins broke committing from subdirectory,
because the unused parameter "prefix" shadowed a global variable.

Spotted by Jeff King.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>fixed variable declaration in gitk</title>
<updated>2006-08-03T20:21:07Z</updated>
<author>
<name>Michael</name>
<email>barra_cuda@katamail.com</email>
</author>
<published>2006-08-03T15:42:44Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=47781bf7793205cfb7b8ce89b9c3627ecf5480fc'/>
<id>urn:sha1:47781bf7793205cfb7b8ce89b9c3627ecf5480fc</id>
<content type='text'>
Signed-off-by: Michael &lt;barra_cuda@katamail.com&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Fix "git diff blob1 blob2" showing the diff in reverse.</title>
<updated>2006-08-03T18:50:10Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-08-03T18:50:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f82cd3c6104733e2ff3305c325a440731aa1d17c'/>
<id>urn:sha1:f82cd3c6104733e2ff3305c325a440731aa1d17c</id>
<content type='text'>
This was introduced by mistake when revision.c::add_pending_object()
was modified to use object-array instead of object-list.

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
