From a8733db9d720f51064fb15f14ac02edfff30ad07 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 23 Apr 2024 16:12:43 -0700 Subject: Autogenerated HTML docs for v2.45.0-rc1 --- RelNotes/2.45.0.txt | 10 ++++++++++ SubmittingPatches.html | 2 +- git-bisect-lk2009.html | 2 +- git-config.html | 2 +- git-tools.html | 2 +- howto-index.html | 4 ++-- howto/coordinate-embargoed-releases.html | 2 +- howto/keep-canonical-history-correct.html | 2 +- howto/maintain-git.html | 2 +- howto/new-command.html | 2 +- howto/rebase-from-internal-branch.html | 2 +- howto/rebuild-from-update-hook.html | 2 +- howto/recover-corrupted-blob-object.html | 2 +- howto/recover-corrupted-object-harder.html | 2 +- howto/revert-a-faulty-merge.html | 2 +- howto/revert-branch-rebase.html | 2 +- howto/separating-topic-branches.html | 2 +- howto/setup-git-server-over-http.html | 2 +- howto/update-hook-example.html | 2 +- howto/use-git-daemon.html | 2 +- howto/using-merge-subtree.html | 2 +- howto/using-signed-tag-in-pull-request.html | 2 +- technical/api-index.html | 2 +- 23 files changed, 33 insertions(+), 23 deletions(-) diff --git a/RelNotes/2.45.0.txt b/RelNotes/2.45.0.txt index 96629b44f..e31bb70d1 100644 --- a/RelNotes/2.45.0.txt +++ b/RelNotes/2.45.0.txt @@ -96,6 +96,11 @@ UI, Workflows & Features * The filename used for rejected hunks "git apply --reject" creates was limited to PATH_MAX, which has been lifted. + * When "git bisect" reports the commit it determined to be the + culprit, we used to show it in a format that does not honor common + UI tweaks, like log.date and log.decorate. The code has been + taught to use "git show" to follow more customizations. + Performance, Internal Implementation, Development Support etc. @@ -431,6 +436,11 @@ Fixes since v2.44 machinery got confused and segfaulted, which has been corrected. (merge 167395bb47 mr/rerere-crash-fix later to maint). + * The "receive-pack" program (which responds to "git push") was not + converted to run "git maintenance --auto" when other codepaths that + used to run "git gc --auto" were updated, which has been corrected. + (merge 7bf3057d9c ps/run-auto-maintenance-in-receive-pack later to maint). + * Other code cleanup, docfix, build fix, etc. (merge f0e578c69c rs/use-xstrncmpz later to maint). (merge 83e6eb7d7a ba/credential-test-clean-fix later to maint). diff --git a/SubmittingPatches.html b/SubmittingPatches.html index c94fd619b..5edde95ba 100644 --- a/SubmittingPatches.html +++ b/SubmittingPatches.html @@ -1555,7 +1555,7 @@ this problem around.

diff --git a/git-bisect-lk2009.html b/git-bisect-lk2009.html index fc090794d..b52374c1c 100644 --- a/git-bisect-lk2009.html +++ b/git-bisect-lk2009.html @@ -737,7 +737,7 @@ asciidoc.install();

Fighting regressions with git bisect

Christian Couder
<chriscool@tuxfamily.org>
-2024-04-19 +2024-04-23
diff --git a/git-config.html b/git-config.html index 5b951c7e8..34c15a9a0 100644 --- a/git-config.html +++ b/git-config.html @@ -9960,7 +9960,7 @@ receive.autogc

- By default, git-receive-pack will run "git-gc --auto" after + By default, git-receive-pack will run "git maintenance run --auto" after receiving data from git-push and updating refs. You can stop it by setting this variable to false.

diff --git a/git-tools.html b/git-tools.html index 4812394bf..67c2c255d 100644 --- a/git-tools.html +++ b/git-tools.html @@ -735,7 +735,7 @@ asciidoc.install();
diff --git a/howto-index.html b/howto-index.html index cc00ded6f..5177a4a6a 100644 --- a/howto-index.html +++ b/howto-index.html @@ -735,7 +735,7 @@ asciidoc.install();
@@ -896,7 +896,7 @@ later validate it.

diff --git a/howto/coordinate-embargoed-releases.html b/howto/coordinate-embargoed-releases.html index ae1d67286..f1672df82 100644 --- a/howto/coordinate-embargoed-releases.html +++ b/howto/coordinate-embargoed-releases.html @@ -1038,7 +1038,7 @@ Thanks, diff --git a/howto/keep-canonical-history-correct.html b/howto/keep-canonical-history-correct.html index 360542b08..0837daeb6 100644 --- a/howto/keep-canonical-history-correct.html +++ b/howto/keep-canonical-history-correct.html @@ -939,7 +939,7 @@ tip of your master again and redo the two merges:

diff --git a/howto/maintain-git.html b/howto/maintain-git.html index d4c3d241e..4e010de27 100644 --- a/howto/maintain-git.html +++ b/howto/maintain-git.html @@ -1479,7 +1479,7 @@ $ git update-ref -d $mf/ai/topic diff --git a/howto/new-command.html b/howto/new-command.html index 5a5e6c7fc..27f9134f3 100644 --- a/howto/new-command.html +++ b/howto/new-command.html @@ -864,7 +864,7 @@ letter [PATCH 0/n]. diff --git a/howto/rebase-from-internal-branch.html b/howto/rebase-from-internal-branch.html index 113365106..a3aac0fba 100644 --- a/howto/rebase-from-internal-branch.html +++ b/howto/rebase-from-internal-branch.html @@ -896,7 +896,7 @@ the #1' commit.

diff --git a/howto/rebuild-from-update-hook.html b/howto/rebuild-from-update-hook.html index 6638c04c3..1627f8941 100644 --- a/howto/rebuild-from-update-hook.html +++ b/howto/rebuild-from-update-hook.html @@ -848,7 +848,7 @@ This is still crude and does not protect against simultaneous diff --git a/howto/recover-corrupted-blob-object.html b/howto/recover-corrupted-blob-object.html index 88521788f..748bbfb33 100644 --- a/howto/recover-corrupted-blob-object.html +++ b/howto/recover-corrupted-blob-object.html @@ -881,7 +881,7 @@ thing.

diff --git a/howto/recover-corrupted-object-harder.html b/howto/recover-corrupted-object-harder.html index 1f992ac76..9859623a0 100644 --- a/howto/recover-corrupted-object-harder.html +++ b/howto/recover-corrupted-object-harder.html @@ -1190,7 +1190,7 @@ int main(int argc, char **argv) diff --git a/howto/revert-a-faulty-merge.html b/howto/revert-a-faulty-merge.html index 061c1813a..c04095cff 100644 --- a/howto/revert-a-faulty-merge.html +++ b/howto/revert-a-faulty-merge.html @@ -1026,7 +1026,7 @@ P---o---o---M---x---x---W---x---M2 diff --git a/howto/revert-branch-rebase.html b/howto/revert-branch-rebase.html index b5944fbd9..0a06acaa1 100644 --- a/howto/revert-branch-rebase.html +++ b/howto/revert-branch-rebase.html @@ -908,7 +908,7 @@ Committed merge 7fb9b7262a1d1e0a47bbfdcbbcf50ce0635d3f8f diff --git a/howto/separating-topic-branches.html b/howto/separating-topic-branches.html index 787e83d81..ea092eb7f 100644 --- a/howto/separating-topic-branches.html +++ b/howto/separating-topic-branches.html @@ -842,7 +842,7 @@ o---o"master" diff --git a/howto/setup-git-server-over-http.html b/howto/setup-git-server-over-http.html index 8ac217358..288310541 100644 --- a/howto/setup-git-server-over-http.html +++ b/howto/setup-git-server-over-http.html @@ -1072,7 +1072,7 @@ help diagnosing the problem, but removes security checks.

diff --git a/howto/update-hook-example.html b/howto/update-hook-example.html index f0df5b731..8e5e7ba3c 100644 --- a/howto/update-hook-example.html +++ b/howto/update-hook-example.html @@ -931,7 +931,7 @@ that JC can make non-fast-forward pushes on it.

diff --git a/howto/use-git-daemon.html b/howto/use-git-daemon.html index 263d1c2aa..3cdc5a491 100644 --- a/howto/use-git-daemon.html +++ b/howto/use-git-daemon.html @@ -792,7 +792,7 @@ a good practice to put the paths after a "--" separator.

diff --git a/howto/using-merge-subtree.html b/howto/using-merge-subtree.html index edae7b43c..eeae25998 100644 --- a/howto/using-merge-subtree.html +++ b/howto/using-merge-subtree.html @@ -849,7 +849,7 @@ Please note that if the other project merges from you, then it will diff --git a/howto/using-signed-tag-in-pull-request.html b/howto/using-signed-tag-in-pull-request.html index fa17aa11e..f6841eec6 100644 --- a/howto/using-signed-tag-in-pull-request.html +++ b/howto/using-signed-tag-in-pull-request.html @@ -953,7 +953,7 @@ as part of the merge commit.

diff --git a/technical/api-index.html b/technical/api-index.html index f94026b9e..0039186eb 100644 --- a/technical/api-index.html +++ b/technical/api-index.html @@ -776,7 +776,7 @@ documents them.

-- cgit 1.2.3-korg