diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-11-03 07:28:12 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-11-03 07:28:12 -0800 |
| commit | 8a68052cd46a8a443a1b8f0eb3beec2fb4a7eef9 (patch) | |
| tree | 19ccca138db313c19c82f413ea6f4eb46041919f | |
| parent | Merge branch 'kn/refs-optim-cleanup' into next (diff) | |
| parent | Git 2.52-rc0 (diff) | |
| download | git-8a68052cd46a8a443a1b8f0eb3beec2fb4a7eef9.tar.gz git-8a68052cd46a8a443a1b8f0eb3beec2fb4a7eef9.zip | |
Sync with Git 2.52-rc0
Git 2.52-rc0
# -----BEGIN PGP SIGNATURE-----
#
# iQIzBAABCAAdFiEE4fA2sf7nIh/HeOzvsLXohpav5ssFAmkIwUQACgkQsLXohpav
# 5stQGhAA0xuQQbW/gMrDtHM5yI/AE0n65Hfi2oam92Dkk0GuNm4iKO9HoBdVtvr3
# SzteWXQGVUpTMRFOcTUIDbABAiJiZT7r1NlfB3YDmNLI2w0ZNZKSkDnVoe6SAQ0z
# zok5vvvqQTIWbXHj0Uthq6GfWJK5+eMy6XJTzvTCYXhkwi/qbUJol7Ena70b/PbF
# MuFmMylsYP6ckhnBRFeTH5IyK6vQOtcQRu39TjpMi0rWDsXrPD+04GgjeOrS88UN
# hDqYO1yhStk2hbrutT3zXtGv4UHKk+OBmBy2Rgr2O9H/31TRLb3qjuhB6ITYqzYx
# HZJ6amo0d4jnpKPyFceixCgwZZmF2YeV/aY03Qk4W+dALvuUwUNN47etDvjmY4q/
# HYmecy3bDnpUJZVVoxVb6kq+NA2ECilL6SsAv8PdFEpLTzy4oOapyVMSZ8WGSYoO
# ENMqxYdyx4bLXKZZZvkAZmJVEBYVS0HCLyV4mJcmQrWX6yioakr05KG61erjBs9R
# UHE3OJ1asjX3r8tAYQzeTCD92+M0/Pz2g5rvFkayucG8dWeTjXjAX07iVKmmBXAZ
# 0oiLmLgMKsgwcf/bMop0X4c2nEvFTZw7fs0GJidWbWpgTl2dGhL2QIKe1g8OzD8v
# DVx8wagBbyA0J+MxM5pxb3BkjQXKVGbFSzgnaHfyAXuLDPm8gkw=
# =Q56b
# -----END PGP SIGNATURE-----
# gpg: Signature made Mon 03 Nov 2025 06:50:44 AM PST
# gpg: using RSA key E1F036B1FEE7221FC778ECEFB0B5E88696AFE6CB
# gpg: Good signature from "Junio C Hamano <gitster@pobox.com>" [ultimate]
# gpg: aka "Junio C Hamano <junio@pobox.com>" [ultimate]
# gpg: aka "Junio C Hamano <jch@google.com>" [ultimate]
* tag 'v2.52.0-rc0':
Git 2.52-rc0
| -rw-r--r-- | Documentation/RelNotes/2.52.0.adoc | 16 | ||||
| -rwxr-xr-x | GIT-VERSION-GEN | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.52.0.adoc b/Documentation/RelNotes/2.52.0.adoc index a86e2c09e0..ba213c0d6c 100644 --- a/Documentation/RelNotes/2.52.0.adoc +++ b/Documentation/RelNotes/2.52.0.adoc @@ -70,6 +70,10 @@ UI, Workflows & Features * "Symlink symref" has been added to the list of things that will disappear at Git 3.0 boundary. + * "git maintenance" command learns the "geometric" strategy where it + avoids doing maintenance tasks that rebuilds everything from + scratch. + Performance, Internal Implementation, Development Support etc. -------------------------------------------------------------- @@ -158,6 +162,9 @@ Performance, Internal Implementation, Development Support etc. * Two slightly different ways to get at "all the packfiles" in API has been cleaned up. + * The code to walk revision graph to compute merge base has been + optimized. + Fixes since v2.51 ----------------- @@ -382,6 +389,14 @@ including security updates, are included in this release. and "git bisect unknown", which has been corrected. (merge 2bb3a012f3 rz/bisect-help-unknown later to maint). + * The 'q'(uit) command in "git add -p" has been improved to quit + without doing any meaningless work before leaving, and giving EOF + (typically control-D) to the prompt is made to behave the same way. + + * The wildmatch code had a corner case bug that mistakenly makes + "foo**/bar" match with "foobar", which has been corrected. + (merge 1940a02dc1 jk/match-pathname-fix later to maint). + * Other code cleanup, docfix, build fix, etc. (merge 529a60a885 ua/t1517-short-help-tests later to maint). (merge 22d421fed9 ac/deglobal-fmt-merge-log-config later to maint). @@ -393,3 +408,4 @@ including security updates, are included in this release. (merge a66fc22bf9 rs/get-oid-with-flags-cleanup later to maint). (merge 15b8abde07 js/mingw-includes-cleanup later to maint). (merge 2cebca0582 tb/cat-file-objectmode-update later to maint). + (merge 8f487db07a kh/doc-patch-id-1 later to maint). diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index b16db85e77..c43f33d889 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,6 +1,6 @@ #!/bin/sh -DEF_VER=v2.51.GIT +DEF_VER=v2.52.0-rc0 LF=' ' |
