Post 2.46-rc0 batch #3

Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Junio C Hamano 2024-07-17 10:47:05 -07:00
parent 219719cc55
commit 1c4a234a1c
1 changed files with 22 additions and 0 deletions

View File

@ -94,6 +94,10 @@ UI, Workflows & Features

* A handful of entries are added to the GitFAQ document.

* "git var GIT_SHELL_PATH" should report the path to the shell used
to spawn external commands, but it didn't do so on Windows, which
has been corrected.


Performance, Internal Implementation, Development Support etc.

@ -223,6 +227,15 @@ Performance, Internal Implementation, Development Support etc.
sparse index to handle working tree cruft that are outside of the
sparse checkout.

* The test framework learned to take the test body not as a single
string but as a here-document.

* "git push '' HEAD:there" used to hit a BUG(); it has been corrected
to die with "fatal: bad repository ''".

* What happens when http.cookieFile gets the special value "" has
been clarified in the documentation.


Fixes since v2.45
-----------------
@ -424,6 +437,15 @@ Fixes since v2.45
Cc: list after running through sanitize_address by "git send-email".
(merge c852531f45 cb/send-email-sanitize-trailer-addresses later to maint).

* Tests that use GIT_TEST_SANITIZE_LEAK_LOG feature got their exit
status inverted, which has been corrected.
(merge 8c1d6691bc rj/test-sanitize-leak-log-fix later to maint).

* The http.cookieFile and http.saveCookies configuration variables
have a few values that need to be avoided, which are now ignored
with warning messages.
(merge 4f5822076f jc/http-cookiefile later to maint).

* Other code cleanup, docfix, build fix, etc.
(merge 493fdae046 ew/object-convert-leakfix later to maint).
(merge 00f3661a0a ss/doc-eol-attr-fix later to maint).