From: Junio C Hamano Date: Tue, 18 Aug 2026 16:31:26 +0000 (-0700) Subject: The 15th batch X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fmain;p=thirdparty%2Fgit.git The 15th batch Signed-off-by: Junio C Hamano --- diff --git a/Documentation/RelNotes/2.56.0.adoc b/Documentation/RelNotes/2.56.0.adoc index c4bf8b3228..cbbc470215 100644 --- a/Documentation/RelNotes/2.56.0.adoc +++ b/Documentation/RelNotes/2.56.0.adoc @@ -90,6 +90,17 @@ UI, Workflows & Features unstaged. It scans the unmerged paths for leftover conflict markers and aborts if any are found. + * The known limitations of the ref format migration in 'git refs' have + been moved to be displayed as a warning admonition directly under the + description of the 'migrate' subcommand, improving visibility. A + reference to 'git-maintenance' has also been corrected to use the + 'linkgit' macro. + + * The 'git bisect' command has been taught a + '--reset-when-found[=]' option that tells the command to + automatically run 'git bisect reset' to jump back to the original + state or to the found culprit. + Performance, Internal Implementation, Development Support etc. -------------------------------------------------------------- @@ -355,6 +366,11 @@ Performance, Internal Implementation, Development Support etc. 'ssh-agent' to force Bourne shell syntax. (merge d5dd17756d kl/t7528-ssh-agent-for-csh-users later to maint). + * A compatibility wrapper for writev(3p) has been reintroduced, + including fixes for CMake build and 'MAX_IO_SIZE' limits on NonStop. + Calls to write(3p) in send_sideband() and cat_blob() have been + refactored to use writev(3p) wrappers to reduce syscall overhead. + Fixes since v2.55 -----------------