From 4cb1af292949215185d833a29a78049cd9511122 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 9 Feb 2024 07:55:45 -0800 Subject: Autogenerated HTML docs for v2.44.0-rc0 --- RelNotes/2.43.1.txt | 82 +++++++++++++++++++++++++++++ RelNotes/2.44.0.txt | 49 ----------------- SubmittingPatches.html | 2 +- git-bisect-lk2009.html | 4 +- git-tools.html | 4 +- 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, 106 insertions(+), 73 deletions(-) create mode 100644 RelNotes/2.43.1.txt diff --git a/RelNotes/2.43.1.txt b/RelNotes/2.43.1.txt new file mode 100644 index 000000000..20e96f2df --- /dev/null +++ b/RelNotes/2.43.1.txt @@ -0,0 +1,82 @@ +Git 2.43.1 Release Notes +======================== + +There is nothing exciting to see here. Relative to Git 2.43, this +release contains the fixes that have already been merged to the +'master' branch of the development towards the next major release. + +Fixes since Git 2.43.0 +---------------------- + + * The way CI testing used "prove" could lead to running the test + suite twice needlessly, which has been corrected. + + * Newer versions of Getopt::Long started giving warnings against our + (ab)use of it in "git send-email". Bump the minimum version + requirement for Perl to 5.8.1 (from September 2002) to allow + simplifying our implementation. + + * Earlier we stopped relying on commit-graph that (still) records + information about commits that are lost from the object store, + which has negative performance implications. The default has been + flipped to disable this pessimization. + + * Stale URLs have been updated to their current counterparts (or + archive.org) and HTTP links are replaced with working HTTPS links. + + * trace2 streams used to record the URLs that potentially embed + authentication material, which has been corrected. + + * The sample pre-commit hook that tries to catch introduction of new + paths that use potentially non-portable characters did not notice + an existing path getting renamed to such a problematic path, when + rename detection was enabled. + + * The command line parser for the "log" family of commands was too + loose when parsing certain numbers, e.g., silently ignoring the + extra 'q' in "git log -n 1q" without complaining, which has been + tightened up. + + * "git $cmd --end-of-options --rev -- --path" for some $cmd failed + to interpret "--rev" as a rev, and "--path" as a path. This was + fixed for many programs like "reset" and "checkout". + + * "git bisect reset" has been taught to clean up state files and refs + even when BISECT_START file is gone. + + * Some codepaths did not correctly parse configuration variables + specified with valueless "true", which has been corrected. + + * Code clean-up for sanity checking of command line options for "git + show-ref". + + * The code to parse the From e-mail header has been updated to avoid + recursion. + + * "git fetch --atomic" issued an unnecessary empty error message, + which has been corrected. + + * Command line completion script (in contrib/) learned to work better + with the reftable backend. + + * "git status" is taught to show both the branch being bisected and + being rebased when both are in effect at the same time. + cf. + + * "git archive --list extra garbage" silently ignored excess command + line parameters, which has been corrected. + + * "git sparse-checkout set" added default patterns even when the + patterns are being fed from the standard input, which has been + corrected. + + * Unlike other environment variables that took the usual + true/false/yes/no as well as 0/1, GIT_FLUSH only understood 0/1, + which has been corrected. + + * Clearing in-core repository (happens during e.g., "git fetch + --recurse-submodules" with commit graph enabled) made in-core + commit object in an inconsistent state by discarding the necessary + data from commit-graph too early, which has been corrected. + +Also contains various documentation updates, code clean-ups and minor fixups. diff --git a/RelNotes/2.44.0.txt b/RelNotes/2.44.0.txt index 148d18d09..edeed7185 100644 --- a/RelNotes/2.44.0.txt +++ b/RelNotes/2.44.0.txt @@ -157,7 +157,6 @@ Fixes since v2.43 * The way CI testing used "prove" could lead to running the test suite twice needlessly, which has been corrected. - (merge e7e03ef995 js/ci-discard-prove-state later to maint). * Update ref-related tests. @@ -168,75 +167,59 @@ Fixes since v2.43 (ab)use of it in "git send-email". Bump the minimum version requirement for Perl to 5.8.1 (from September 2002) to allow simplifying our implementation. - (merge 6ff658cc78 tz/send-email-negatable-options later to maint). * Earlier we stopped relying on commit-graph that (still) records information about commits that are lost from the object store, which has negative performance implications. The default has been flipped to disable this pessimization. - (merge b1df3b3867 ps/commit-graph-less-paranoid later to maint). * Stale URLs have been updated to their current counterparts (or archive.org) and HTTP links are replaced with working HTTPS links. - (merge 62b4f7b9c6 js/update-urls-in-doc-and-comment later to maint). * trace2 streams used to record the URLs that potentially embed authentication material, which has been corrected. - (merge 16fa3eebc0 jh/trace2-redact-auth later to maint). * The sample pre-commit hook that tries to catch introduction of new paths that use potentially non-portable characters did not notice an existing path getting renamed to such a problematic path, when rename detection was enabled. - (merge d9fd71fa2a jp/use-diff-index-in-pre-commit-sample later to maint). * The command line parser for the "log" family of commands was too loose when parsing certain numbers, e.g., silently ignoring the extra 'q' in "git log -n 1q" without complaining, which has been tightened up. - (merge 71a1e94821 jc/revision-parse-int later to maint). * "git $cmd --end-of-options --rev -- --path" for some $cmd failed to interpret "--rev" as a rev, and "--path" as a path. This was fixed for many programs like "reset" and "checkout". - (merge 9385174627 jk/end-of-options later to maint). * "git bisect reset" has been taught to clean up state files and refs even when BISECT_START file is gone. - (merge daaa03e54c jk/bisect-reset-fix later to maint). * Some codepaths did not correctly parse configuration variables specified with valueless "true", which has been corrected. - (merge d49cb162fa jk/implicit-true later to maint). * Code clean-up for sanity checking of command line options for "git show-ref". - (merge 7382497372 rs/show-ref-incompatible-options later to maint). * The code to parse the From e-mail header has been updated to avoid recursion. - (merge dee182941f jk/mailinfo-iterative-unquote-comment later to maint). * "git fetch --atomic" issued an unnecessary empty error message, which has been corrected. - (merge 18ce48918c jx/fetch-atomic-error-message-fix later to maint). * Command line completion script (in contrib/) learned to work better with the reftable backend. - (merge 44dbb3bf29 sh/completion-with-reftable later to maint). * "git status" is taught to show both the branch being bisected and being rebased when both are in effect at the same time. - (merge 990adccbdf rj/status-bisect-while-rebase later to maint). * "git archive --list extra garbage" silently ignored excess command line parameters, which has been corrected. - (merge d6b6cd1393 jc/archive-list-with-extra-args later to maint). * "git sparse-checkout set" added default patterns even when the patterns are being fed from the standard input, which has been corrected. - (merge 53ded839ae jc/sparse-checkout-set-default-fix later to maint). * "git sparse-checkout (add|set) --[no-]cone --end-of-options" did not handle "--end-of-options" correctly after a recent update. @@ -244,13 +227,11 @@ Fixes since v2.43 * Unlike other environment variables that took the usual true/false/yes/no as well as 0/1, GIT_FLUSH only understood 0/1, which has been corrected. - (merge 556e68032f cp/git-flush-is-an-env-bool later to maint). * Clearing in-core repository (happens during e.g., "git fetch --recurse-submodules" with commit graph enabled) made in-core commit object in an inconsistent state by discarding the necessary data from commit-graph too early, which has been corrected. - (merge d70f554cdf jk/commit-graph-slab-clear-fix later to maint). * Update to a new feature recently added, "git show-ref --exists". (merge 0aabeaa562 tc/show-ref-exists-fix later to maint). @@ -299,36 +280,6 @@ Fixes since v2.43 (merge 156e28b36d jh/sparse-index-expand-to-path-fix later to maint). * Other code cleanup, docfix, build fix, etc. - (merge 50f1abcff6 js/packfile-h-typofix later to maint). - (merge cbf498eb53 jb/reflog-expire-delete-dry-run-options later to maint). - (merge 7854bf4960 rs/i18n-cannot-be-used-together later to maint). - (merge cd3c28c53a rs/column-leakfix later to maint). - (merge 866a1b9026 ps/ref-tests-update-more later to maint). - (merge e4299d26d4 mk/doc-gitfile-more later to maint). - (merge 792b86283b rs/incompatible-options-messages later to maint). - (merge ea8f9494ab jk/config-cleanup later to maint). - (merge d1bd3a8c34 jk/mailinfo-oob-read-fix later to maint). - (merge c0cadb0576 ps/reftable-fixes later to maint). - (merge 647b5e0998 ps/chainlint-self-check-update later to maint). - (merge 68fcebfb1a es/add-doc-list-short-form-of-all-in-synopsis later to maint). - (merge bc62d27d5c jc/doc-most-refs-are-not-that-special later to maint). - (merge 6d6f1cd7ee jc/doc-misspelt-refs-fix later to maint). - (merge 37e8d795be sp/test-i18ngrep later to maint). - (merge fbc6526ea6 rs/t6300-compressed-size-fix later to maint). - (merge 45184afb4d rs/rebase-use-strvec-pushf later to maint). - (merge a762af3dfd jc/retire-cas-opt-name-constant later to maint). - (merge de7c27a186 la/trailer-cleanups later to maint). - (merge d44b517137 jc/orphan-unborn later to maint). - (merge 63956c553d ml/doc-merge-updates later to maint). - (merge d57c671a51 en/header-cleanup later to maint). - (merge 5b7eec4bc5 rs/fast-import-simplify-mempool-allocation later to maint). - (merge 291873e5d6 js/contributor-docs-updates later to maint). - (merge 54d8a2531b jk/t1006-cat-file-objectsize-disk later to maint). - (merge 7033d5479b jx/sideband-chomp-newline-fix later to maint). - (merge 9cd30af991 ms/rebase-insnformat-doc-fix later to maint). - (merge 03bcc93769 cp/sideband-array-index-comment-fix later to maint). - (merge 993d38a066 jk/index-pack-lsan-false-positive-fix later to maint). - (merge 25aec06326 ib/rebase-reschedule-doc later to maint). (merge 5aea3955bc rj/clarify-branch-doc-m later to maint). (merge 9cce3be2df bk/bisect-doc-fix later to maint). (merge 8f50984cf4 ne/doc-filter-blob-limit-fix later to maint). diff --git a/SubmittingPatches.html b/SubmittingPatches.html index 88f6732c4..ce3620dfd 100644 --- a/SubmittingPatches.html +++ b/SubmittingPatches.html @@ -1546,7 +1546,7 @@ this problem around.

diff --git a/git-bisect-lk2009.html b/git-bisect-lk2009.html index 61086c69c..ea0dc17ac 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>
-2023-11-20 +2024-02-08
@@ -1983,7 +1983,7 @@ author to given a talk and for publishing this paper.

diff --git a/git-tools.html b/git-tools.html index cc331233b..d4cf73c58 100644 --- a/git-tools.html +++ b/git-tools.html @@ -735,7 +735,7 @@ asciidoc.install();
@@ -753,7 +753,7 @@ more efficiently, so this manually-maintained list has been retired.

diff --git a/howto-index.html b/howto-index.html index 5ceda6759..1c660a08e 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 8c3cda3bf..fab93d415 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 2475a9238..162d8d9cb 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 eeae362c9..330b0a1d5 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 ebd029433..eab435ae0 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 6cec36365..78ca75820 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 a2cc27575..5c3fd5d9f 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 e36c1e1eb..bf20bbdc8 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 ab5fba07f..312f57310 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 eb4303cfa..3ef57b4c0 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 7b7ec8424..195050101 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 d5b5de603..415284956 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 8df118545..2abe0240c 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 a2938c81c..23df62a86 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 69815ea9d..c98d935d6 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 4c78d8a28..c1a337ed8 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 74d15efb8..55c04d33e 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 fae733cf8..952625798 100644 --- a/technical/api-index.html +++ b/technical/api-index.html @@ -776,7 +776,7 @@ documents them.

-- cgit 1.2.3-korg