The 10th batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Aug 3, 2026 at 09:31 UTC
5b2471720c93ee30e5764a19f3d3b3ae9ec9712a
1 file changed
+21
Documentation/RelNotes/2.56.0.adoc
+21
index 6cee8bb8e8..a57ca5426f 100644
--- a/Documentation/RelNotes/2.56.0.adoc
+++ b/Documentation/RelNotes/2.56.0.adoc
@@ -445,3 +445,24 @@ Fixes since v2.55
'gitweb' has been corrected to work even when the index line carries
a trailing file mode.
(merge fda513d6fe tl/gitweb-shorten-hashes-with-modes later to maint).
+
+ * When the push remote is specified as a URL, the fetch refspec of a
+ uniquely matching configured remote is now used to find and update
+ the remote-tracking branch (e.g., '@{push}').
+
+ * Traversals with '--exclude-first-parent-only' have been corrected
+ to properly stop after the first parent even when it has already
+ been marked as 'SEEN'.
+ (merge 47382f7398 jc/exclude-first-parent-seen later to maint).
+
+ * A segfault when 'git clone --revision' talks to a server that does not
+ support protocol v2 (falling back to protocol v0) has been corrected.
+ (merge 1034ad383f af/clone-revision-v0-segfault-fix later to maint).
+
+ * rewrites_release() in 'remote.c' has been updated to free 'struct
+ rewrite' instances, their '.instead_of' arrays, and their contents.
+ (merge dcef3bf041 jc/remote-insteadof-leakfix later to maint).
+
+ * The remote-matching logic for submodules has been corrected to resolve
+ 'url.*.insteadOf' aliases before comparing the inventoried URL from
+ '.gitmodules' with the URLs of configured remotes.