Sync with 'master'

This commit is contained in:
Junio C Hamano
2023-07-17 11:32:57 -07:00

View File

@ -19,6 +19,13 @@ UI, Workflows & Features
* 'git notes append' was taught '--separator' to specify string to insert * 'git notes append' was taught '--separator' to specify string to insert
between paragraphs. between paragraphs.
* The "git for-each-ref" family of commands learned placeholders
related to GPG signature verification.
* "git diff --no-index" learned to read from named pipes as if they
were regular files, to allow "git diff <(process) <(substitution)"
some shells support.
Performance, Internal Implementation, Development Support etc. Performance, Internal Implementation, Development Support etc.
@ -47,6 +54,9 @@ Performance, Internal Implementation, Development Support etc.
* Move functions that are not about pure string manipulation out of * Move functions that are not about pure string manipulation out of
strbuf.[ch] strbuf.[ch]
* "imap-send" codepaths got cleaned up to get rid of unused
parameters.
Fixes since v2.41 Fixes since v2.41
----------------- -----------------
@ -156,6 +166,19 @@ Fixes since v2.41
on-disk index file, which have been corrected. on-disk index file, which have been corrected.
(merge 2ee045eea1 js/empty-index-fixes later to maint). (merge 2ee045eea1 js/empty-index-fixes later to maint).
* "git bugreport" tests did not test what it wanted to test, which
has been corrected.
(merge 1aa92b8500 ma/t0091-fixup later to maint).
* Code snippets in a tutorial document no longer compiled after
recent header shuffling, which have been corrected.
(merge bbd7c7b7c0 vd/adjust-mfow-doc-to-updated-headers later to maint).
* "git ls-files '(attr:X)D/'" that triggers the common prefix
optimization codepath failed to read from "D/.gitattributes",
which has been corrected.
(merge f4a8fde057 jc/pathspec-match-with-common-prefix later to maint).
* Other code cleanup, docfix, build fix, etc. * Other code cleanup, docfix, build fix, etc.
(merge 51f9d2e563 sa/doc-ls-remote later to maint). (merge 51f9d2e563 sa/doc-ls-remote later to maint).
(merge c6d26a9dda jk/format-patch-message-id-unleak later to maint). (merge c6d26a9dda jk/format-patch-message-id-unleak later to maint).
@ -177,3 +200,4 @@ Fixes since v2.41
(merge d4f28279ad jc/doc-hash-object-types later to maint). (merge d4f28279ad jc/doc-hash-object-types later to maint).
(merge 1876a5ae15 ks/t4205-test-describe-with-abbrev-fix later to maint). (merge 1876a5ae15 ks/t4205-test-describe-with-abbrev-fix later to maint).
(merge 6e6a529b57 jk/fsck-indices-in-worktrees later to maint). (merge 6e6a529b57 jk/fsck-indices-in-worktrees later to maint).
(merge 3e81b896f7 rs/packet-length-simplify later to maint).