<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git, branch v2.45.0-rc1</title>
<subtitle>Fork of git SCM with my patches.</subtitle>
<id>http://git.kilabit.info/git/atom?h=v2.45.0-rc1</id>
<link rel='self' href='http://git.kilabit.info/git/atom?h=v2.45.0-rc1'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/'/>
<updated>2024-04-23T22:05:56Z</updated>
<entry>
<title>Git 2.45-rc1</title>
<updated>2024-04-23T22:05:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T22:05:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=bf995e7a4f94a9388aa8042dc9e338f3fcb75496'/>
<id>urn:sha1:bf995e7a4f94a9388aa8042dc9e338f3fcb75496</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'ps/run-auto-maintenance-in-receive-pack'</title>
<updated>2024-04-23T22:05:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T22:05:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5c7ffafcea5fe37d435cc684d59eee91696dfb9f'/>
<id>urn:sha1:5c7ffafcea5fe37d435cc684d59eee91696dfb9f</id>
<content type='text'>
The "receive-pack" program (which responds to "git push") was not
converted to run "git maintenance --auto" when other codepaths that
used to run "git gc --auto" were updated, which has been corrected.

* ps/run-auto-maintenance-in-receive-pack:
  builtin/receive-pack: convert to use git-maintenance(1)
  run-command: introduce function to prepare auto-maintenance process
</content>
</entry>
<entry>
<title>Merge branch 'pk/bisect-use-show'</title>
<updated>2024-04-23T22:05:56Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T22:05:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=5b7877482082698a730f1045c78cf90af544ab6c'/>
<id>urn:sha1:5b7877482082698a730f1045c78cf90af544ab6c</id>
<content type='text'>
When "git bisect" reports the commit it determined to be the
culprit, we used to show it in a format that does not honor common
UI tweaks, like log.date and log.decorate.  The code has been
taught to use "git show" to follow more customizations.

* pk/bisect-use-show:
  bisect: report the found commit with "show"
</content>
</entry>
<entry>
<title>A bit more topics before -rc1</title>
<updated>2024-04-23T18:52:42Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:19Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=10f1281498467654abdb13c6c7c7b23af4b97aeb'/>
<id>urn:sha1:10f1281498467654abdb13c6c7c7b23af4b97aeb</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'rs/apply-reject-long-name'</title>
<updated>2024-04-23T18:52:42Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=b0679fa2b8010f6e36e377a698606312ba8cf4ae'/>
<id>urn:sha1:b0679fa2b8010f6e36e377a698606312ba8cf4ae</id>
<content type='text'>
The filename used for rejected hunks "git apply --reject" creates
was limited to PATH_MAX, which has been lifted.

* rs/apply-reject-long-name:
  apply: avoid using fixed-size buffer in write_out_one_reject()
</content>
</entry>
<entry>
<title>Merge branch 'mr/rerere-crash-fix'</title>
<updated>2024-04-23T18:52:41Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=7b66f5dd8bb553905eaa162d93f000026b241079'/>
<id>urn:sha1:7b66f5dd8bb553905eaa162d93f000026b241079</id>
<content type='text'>
When .git/rr-cache/ rerere database gets corrupted or rerere is fed to
work on a file with conflicted hunks resolved incompletely, the rerere
machinery got confused and segfaulted, which has been corrected.

* mr/rerere-crash-fix:
  rerere: fix crashes due to unmatched opening conflict markers
</content>
</entry>
<entry>
<title>Merge branch 'rs/imap-send-simplify-cmd-issuing-codepath'</title>
<updated>2024-04-23T18:52:41Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:41Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=fb9f603f3c6756de772ac16ddddbcb4474dd96b8'/>
<id>urn:sha1:fb9f603f3c6756de772ac16ddddbcb4474dd96b8</id>
<content type='text'>
Code simplification.

* rs/imap-send-simplify-cmd-issuing-codepath:
  imap-send: increase command size limit
</content>
</entry>
<entry>
<title>Merge branch 'xx/rfc2822-date-format-in-doc'</title>
<updated>2024-04-23T18:52:40Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=9cb0bbf0b43803a68aadb3e0f929b3082233d288'/>
<id>urn:sha1:9cb0bbf0b43803a68aadb3e0f929b3082233d288</id>
<content type='text'>
Docfix.

* xx/rfc2822-date-format-in-doc:
  Documentation: fix typos describing date format
</content>
</entry>
<entry>
<title>Merge branch 'ps/missing-btmp-fix'</title>
<updated>2024-04-23T18:52:40Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:40Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=567293123d874bfb0607de7e8d6c65642107f132'/>
<id>urn:sha1:567293123d874bfb0607de7e8d6c65642107f132</id>
<content type='text'>
GIt 2.44 introduced a regression that makes the updated code to
barf in repositories with multi-pack index written by older
versions of Git, which has been corrected.

* ps/missing-btmp-fix:
  pack-bitmap: gracefully handle missing BTMP chunks
</content>
</entry>
<entry>
<title>Merge branch 'la/format-trailer-info'</title>
<updated>2024-04-23T18:52:39Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2024-04-23T18:52:39Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/git/commit/?id=c9f1f88bb09676706f344b41cc80821ee2859984'/>
<id>urn:sha1:c9f1f88bb09676706f344b41cc80821ee2859984</id>
<content type='text'>
The code to format trailers have been cleaned up.

* la/format-trailer-info:
  trailer: finish formatting unification
  trailer: begin formatting unification
  format_trailer_info(): append newline for non-trailer lines
  format_trailer_info(): drop redundant unfold_value()
  format_trailer_info(): use trailer_item objects
</content>
</entry>
</feed>
