<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.1.3</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.1.3</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.1.3'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2014-10-29T17:48:45Z</updated>
<entry>
<title>Git 2.1.3</title>
<updated>2014-10-29T17:48:45Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:48:38Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=49c3e926349e964b311b46251bb2b97d3d669855'/>
<id>urn:sha1:49c3e926349e964b311b46251bb2b97d3d669855</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'jk/pack-objects-no-bitmap-when-splitting' into maint</title>
<updated>2014-10-29T17:35:17Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:35:17Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=ebc2e5a593ce7082bed03b2d22e2fe83583a9f5d'/>
<id>urn:sha1:ebc2e5a593ce7082bed03b2d22e2fe83583a9f5d</id>
<content type='text'>
* jk/pack-objects-no-bitmap-when-splitting:
  pack-objects: turn off bitmaps when we split packs
</content>
</entry>
<entry>
<title>Merge branch 'da/mergetool-meld' into maint</title>
<updated>2014-10-29T17:35:16Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:35:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=9db18387056c713eca8f53bff3bb409d23117f1d'/>
<id>urn:sha1:9db18387056c713eca8f53bff3bb409d23117f1d</id>
<content type='text'>
* da/mergetool-meld:
  mergetools/meld: make usage of `--output` configurable and more robust
</content>
</entry>
<entry>
<title>Merge branch 'rm/gitweb-start-form' into maint</title>
<updated>2014-10-29T17:35:16Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:35:16Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=af1b4e350f5f24e4fbc6f870c9e1552175b86b76'/>
<id>urn:sha1:af1b4e350f5f24e4fbc6f870c9e1552175b86b76</id>
<content type='text'>
* rm/gitweb-start-form:
  gitweb: use start_form, not startform that was removed in CGI.pm 4.04
</content>
</entry>
<entry>
<title>Merge branch 'bc/asciidoc-pretty-formats-fix' into maint</title>
<updated>2014-10-29T17:35:10Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:35:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=27c31d2088a14e6d2f6a83cf24fdcc90aa936e6b'/>
<id>urn:sha1:27c31d2088a14e6d2f6a83cf24fdcc90aa936e6b</id>
<content type='text'>
* bc/asciidoc-pretty-formats-fix:
  Documentation: fix misrender of pretty-formats in Asciidoctor
</content>
</entry>
<entry>
<title>Merge branch 'rs/daemon-fixes' into maint</title>
<updated>2014-10-29T17:35:09Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2014-10-29T17:35:09Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=a8f01f87d03bef31d3b7f43c4c46398ec76a8e91'/>
<id>urn:sha1:a8f01f87d03bef31d3b7f43c4c46398ec76a8e91</id>
<content type='text'>
* rs/daemon-fixes:
  daemon: remove write-only variable maxfd
  daemon: fix error message after bind()
  daemon: handle gethostbyname() error
</content>
</entry>
<entry>
<title>pack-objects: turn off bitmaps when we split packs</title>
<updated>2014-10-19T22:08:38Z</updated>
<author>
<name>Jeff King</name>
<email>peff@peff.net</email>
</author>
<published>2014-10-17T01:11:43Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=21134714787a02a37da15424d72c0119b2b8ed71'/>
<id>urn:sha1:21134714787a02a37da15424d72c0119b2b8ed71</id>
<content type='text'>
If a pack.packSizeLimit is set, we may split the pack data
across multiple packfiles. This means we cannot generate
.bitmap files, as they require that all of the reachable
objects are in the same pack. We check that condition when
we are generating the list of objects to pack (and disable
bitmaps if we are not packing everything), but we forgot to
update it when we notice that we needed to split (which
doesn't happen until the actual write phase).

The resulting bitmaps are quite bogus (they mention entries
that do not exist in the pack!) and can cause a fetch or
push to send insufficient objects.

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>gitweb: use start_form, not startform that was removed in CGI.pm 4.04</title>
<updated>2014-10-16T20:12:34Z</updated>
<author>
<name>Roland Mas</name>
<email>lolando@debian.org</email>
</author>
<published>2014-10-16T06:54:47Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=4750f4b962b4f09b03fcdde86684cf60c6f6e46a'/>
<id>urn:sha1:4750f4b962b4f09b03fcdde86684cf60c6f6e46a</id>
<content type='text'>
CGI.pm 4.04 removed the startform method, which had previously been
deprecated in favour of start_form.  Changes file for CGI.pm says:

    4.04 2014-09-04
     [ REMOVED / DEPRECATIONS ]
	- startform and endform methods removed (previously deprecated,
	  you should be using the start_form and end_form methods)

Signed-off-by: Roland Mas &lt;lolando@debian.org&gt;
Reviewed-by: Jakub Narębski &lt;jnareb@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>mergetools/meld: make usage of `--output` configurable and more robust</title>
<updated>2014-10-16T18:58:11Z</updated>
<author>
<name>David Aguilar</name>
<email>davvid@gmail.com</email>
</author>
<published>2014-10-16T04:45:14Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=b12d04503b0aba1f2d68b164b348cbf94bbe570b'/>
<id>urn:sha1:b12d04503b0aba1f2d68b164b348cbf94bbe570b</id>
<content type='text'>
Older versions of meld listed --output in `meld --help`.
Newer versions only mention `meld [OPTIONS...]`.
Improve the checks to catch these newer versions.

Add a `mergetool.meld.hasOutput` configuration to allow
overriding the heuristic.

Reported-by: Andrey Novoseltsev &lt;novoselt@gmail.com&gt;
Helped-by: Junio C Hamano &lt;gitster@pobox.com&gt;
Signed-off-by: David Aguilar &lt;davvid@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: fix misrender of pretty-formats in Asciidoctor</title>
<updated>2014-10-08T20:51:46Z</updated>
<author>
<name>brian m. carlson</name>
<email>sandals@crustytoothpaste.net</email>
</author>
<published>2014-10-08T20:46:10Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c30c43c07dc2f53d7a1b247813597e087313a518'/>
<id>urn:sha1:c30c43c07dc2f53d7a1b247813597e087313a518</id>
<content type='text'>
Neither the AsciiDoc nor the Asciidoctor documentation specify whether
the same number of delimiter characters must be used to end a block as
to begin it, although both sets of documentation show exactly matching
pairs.  AsciiDoc allows mismatches, but AsciiDoctor apparently does not.
Adjust the pretty formats documentation to use matching pairs to prevent
a misrendering where the remainder of the document was rendered as a
listing block.

Signed-off-by: brian m. carlson &lt;sandals@crustytoothpaste.net&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
