<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v1.6.3-rc2</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v1.6.3-rc2</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v1.6.3-rc2'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2009-04-25T05:59:35Z</updated>
<entry>
<title>GIT 1.6.3-rc2</title>
<updated>2009-04-25T05:59:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-25T05:54:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f29ac4f1b04c9cf84509e4a80f27f10b4373a446'/>
<id>urn:sha1:f29ac4f1b04c9cf84509e4a80f27f10b4373a446</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2009-04-25T05:59:08Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-25T05:59:08Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=86e081aea408a4ff34001d6f221cc42e46ebbaa0'/>
<id>urn:sha1:86e081aea408a4ff34001d6f221cc42e46ebbaa0</id>
<content type='text'>
* maint:
  test-genrandom: Add newline to usage string
</content>
</entry>
<entry>
<title>Merge branch 'maint-1.6.1' into maint</title>
<updated>2009-04-25T05:58:31Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-25T05:58:31Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=f06b9f1dffa67c1d28793bdaf7b2165d3d392d35'/>
<id>urn:sha1:f06b9f1dffa67c1d28793bdaf7b2165d3d392d35</id>
<content type='text'>
* maint-1.6.1:
  test-genrandom: Add newline to usage string
</content>
</entry>
<entry>
<title>Merge branch 'maint-1.6.0' into maint-1.6.1</title>
<updated>2009-04-25T05:49:34Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-25T05:49:34Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=cc137194519a8ddbc0514da088fb012bea40df51'/>
<id>urn:sha1:cc137194519a8ddbc0514da088fb012bea40df51</id>
<content type='text'>
* maint-1.6.0:
  test-genrandom: Add newline to usage string
</content>
</entry>
<entry>
<title>t7800: respect NO_PERL</title>
<updated>2009-04-24T16:24:35Z</updated>
<author>
<name>Jeff King</name>
<email>peff@peff.net</email>
</author>
<published>2009-04-24T13:56:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a766829458d2ecdc09f42076775ce4d6d4c9d1a8'/>
<id>urn:sha1:a766829458d2ecdc09f42076775ce4d6d4c9d1a8</id>
<content type='text'>
Difftool is written in perl, so we don't build it if NO_PERL
is set.

Signed-off-by: Jeff King &lt;peff@peff.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>remote.c: do not trigger remote.&lt;name&gt;.&lt;var&gt; codepath for two-level names</title>
<updated>2009-04-24T08:29:28Z</updated>
<author>
<name>Johannes Sixt</name>
<email>j6t@kdbg.org</email>
</author>
<published>2009-04-23T13:49:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=cd294bc3f3a7b1277551a8c6e0682fdfbe794260'/>
<id>urn:sha1:cd294bc3f3a7b1277551a8c6e0682fdfbe794260</id>
<content type='text'>
If the config file contains a section like this:

    [remote]
            default = foo

(it should be '[remotes]') then commands like

    git status
    git checkout
    git branch -v

fail even though they are not obviously related to remotes. (These
commands write "ahead, behind" information and, therefore, access the
per-remote information).

Unknown configuration keys should be ignored, not trigger errors.

Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>builtin-help: silently tolerate unknown keys</title>
<updated>2009-04-24T08:29:13Z</updated>
<author>
<name>Johannes Sixt</name>
<email>j6t@kdbg.org</email>
</author>
<published>2009-04-23T13:49:06Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=178b513eb78ac8099588c5bed1f1f74f660cf009'/>
<id>urn:sha1:178b513eb78ac8099588c5bed1f1f74f660cf009</id>
<content type='text'>
If for some reason the config file contains a key without a subkey like

    [man]
        foo = bar

then even a plain

    git help

produces an error message. With this patch such an entry is ignored.

Additionally, the warning about unknown sub-keys is removed. It could
become annoying if new sub-keys are introduced in the future, and then
the configuration is read by an old version of git that does not know
about it.

Signed-off-by: Johannes Sixt &lt;j6t@kdbg.org&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Explain seemingly pointless use of system in difftool</title>
<updated>2009-04-24T08:20:35Z</updated>
<author>
<name>Alex Riesen</name>
<email>raa.lkml@gmail.com</email>
</author>
<published>2009-04-23T19:18:09Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=677fbff88f368ed6ac52438ddbb530166ec1d5d1'/>
<id>urn:sha1:677fbff88f368ed6ac52438ddbb530166ec1d5d1</id>
<content type='text'>
Portability reasons.

Signed-off-by: Alex Riesen &lt;raa.lkml@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Makefile: ignore perl/ subdirectory under NO_PERL</title>
<updated>2009-04-23T19:53:32Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2009-04-23T05:42:28Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5be3b17f094d832458238e4d2979cf9ab7118b6f'/>
<id>urn:sha1:5be3b17f094d832458238e4d2979cf9ab7118b6f</id>
<content type='text'>
The install target still descends into perl subdirectory when NO_PERL is
requested.  Fix this.

Acked-by: Jeff King &lt;peff@peff.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>config.txt: Make configuration paragraph more consistent</title>
<updated>2009-04-23T19:53:32Z</updated>
<author>
<name>Stephen Boyd</name>
<email>bebarino@gmail.com</email>
</author>
<published>2009-04-23T09:38:02Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=66e35fcb79cad5a2ec2366da956db55da855b20d'/>
<id>urn:sha1:66e35fcb79cad5a2ec2366da956db55da855b20d</id>
<content type='text'>
By renaming 'information' to 'configuration' we capture more clearly
what a configuration file holds.

Signed-off-by: Stephen Boyd &lt;bebarino@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
