Skip to content

Commit

Permalink
Autogenerated HTML docs for v2.43.0-rc1-1-ge0939b
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Nov 13, 2023
1 parent 9f9f4f0 commit c1f1c70
Show file tree
Hide file tree
Showing 44 changed files with 76 additions and 76 deletions.
2 changes: 1 addition & 1 deletion MyFirstContribution.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>My First Contribution to the Git Project</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion MyFirstObjectWalk.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>My First Object Walk</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
36 changes: 18 additions & 18 deletions RelNotes/2.43.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ UI, Workflows & Features
a branch that is checked out and protect it. Rephrase the message
to say that the branch is in use.

* Hourly and other schedule of "git maintenance" jobs are randomly
* Hourly and other schedules of "git maintenance" jobs are randomly
distributed now.

* "git cmd -h" learned to signal which options can be negated by
listing such options like "--[no-]opt".

* The way authentication related data other than passwords (e.g.
oath token and password expiration data) are stored in libsecret
* The way authentication related data other than passwords (e.g.,
oauth token and password expiration data) are stored in libsecret
keyrings has been rethought.

* Update the libsecret and wincred credential helpers to correctly
Expand All @@ -60,7 +60,7 @@ UI, Workflows & Features

* The default log message created by "git revert", when reverting a
commit that records a revert, has been tweaked, to encourage people
describe complex "revert of revert of revert" situation better in
to describe complex "revert of revert of revert" situations better in
their own words.

* The command-line completion support (in contrib/) learned to
Expand All @@ -77,8 +77,8 @@ UI, Workflows & Features

* The command line completion script (in contrib/) can be told to
complete aliases by including ": git <cmd> ;" in the alias to tell
it that the alias should be completed similar to how "git <cmd>" is
completed. The parsing code for the alias as been loosened to
it that the alias should be completed in a similar way to how "git <cmd>" is
completed. The parsing code for the alias has been loosened to
allow ';' without an extra space before it.

* "git for-each-ref" and friends learned to apply mailmap to
Expand Down Expand Up @@ -117,8 +117,8 @@ Performance, Internal Implementation, Development Support etc.
* Flaky "git p4" tests, as well as "git svn" tests, are now skipped
in the (rather expensive) sanitizer CI job.

* Tests with LSan from time to time seem to emit harmless message
that makes our tests unnecessarily flaky; we work it around by
* Tests with LSan from time to time seem to emit harmless messages
that make our tests unnecessarily flaky; we work around it by
filtering the uninteresting output.

* Unused parameters to functions are marked as such, and/or removed,
Expand All @@ -135,7 +135,7 @@ Performance, Internal Implementation, Development Support etc.

* Test coverage for trailers has been improved.

* The code to iterate over loose references have been optimized to
* The code to iterate over loose references has been optimized to
reduce the number of lstat() system calls.

* The codepaths that read "chunk" formatted files have been corrected
Expand All @@ -157,7 +157,7 @@ Fixes since v2.42
branch tips at the same time will not waste building and testing
the same thing twice.

* The commit-graph verification code that detects mixture of zero and
* The commit-graph verification code that detects a mixture of zero and
non-zero generation numbers has been updated.

* "git diff -w --exit-code" with various options did not work
Expand All @@ -170,20 +170,20 @@ Fixes since v2.42
the sequencer code has been cleaned up for consistency.

* "git diff --no-such-option" and other corner cases around the exit
status of the "diff" command has been corrected.
status of the "diff" command have been corrected.

* "git for-each-ref --sort='contents:size'" sorts the refs according
to size numerically, giving a ref that points at a blob twelve-byte
(12) long before showing a blob hundred-byte (100) long.

* We now limit depth of the tree objects and maximum length of
* We now limit the depth of the tree objects and maximum length of
pathnames recorded in tree objects.
(merge 4d5693ba05 jk/tree-name-and-depth-limit later to maint).

* Various fixes to the behavior of "rebase -i" when the command got
interrupted by conflicting changes.

* References from description of the `--patch` option in various
* References from a description of the `--patch` option in various
manual pages have been simplified and improved.

* "git grep -e A --no-or -e B" is accepted, even though the negation
Expand All @@ -203,8 +203,8 @@ Fixes since v2.42
information for a file when fsmonitor knows it is clean and ended
up behaving as if it is not clean, which has been corrected.

* Clarify how "alias.foo = : git cmd ; aliased-command-string" should
be spelled with necessary whitespaces around punctuation marks to
* Clarify how "alias.foo = : git cmd ; aliased-command-string" should be
spelled with necessary whitespace around punctuation marks to
work.

* HTTP Header redaction code has been adjusted for a newer version of
Expand Down Expand Up @@ -256,9 +256,9 @@ Fixes since v2.42
by "git stash create" now errors out.
(merge d9b6634589 jc/fail-stash-to-store-non-stash later to maint).

* The index file has room only for lower 32-bit of the file size in
* The index file has room only for the lower 32-bit of the file size in
the cached stat information, which means cached stat information
will have 0 in its sd_size member for a file whose size is multiple
will have 0 in its sd_size member for a file whose size is a multiple
of 4GiB. This is mistaken for a racily clean path. Avoid it by
storing a bogus sd_size value instead for such files.
(merge 5143ac07b1 bc/racy-4gb-files later to maint).
Expand All @@ -281,7 +281,7 @@ Fixes since v2.42
20 months or so, which has been corrected.

* "git send-email" did not have certain pieces of data computed yet
when it tried to validate the outging messages and its recipient
when it tried to validate the outgoing messages and its recipient
addresses, which has been sorted out.

* "git bugreport" learned to complain when it received a command line
Expand Down
2 changes: 1 addition & 1 deletion ReviewingGuidelines.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Reviewing Patches in the Git Project</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion SubmittingPatches.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Submitting Patches</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion ToolsForGit.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Tools for developing Git</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
2 changes: 1 addition & 1 deletion everyday.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Everyday Git With 20 Commands Or So</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
2 changes: 1 addition & 1 deletion git-remote-helpers.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>git-remote-helpers</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
2 changes: 1 addition & 1 deletion howto/coordinate-embargoed-releases.html
Original file line number Diff line number Diff line change
Expand Up @@ -1038,7 +1038,7 @@ <h3 id="_example_mail_to_a_href_mailto_oss_security_lists_openwall_com_oss_secur
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/keep-canonical-history-correct.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>Keep authoritative canonical history correct with git pull</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -939,7 +939,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/maintain-git.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to maintain Git</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div class="sect1">
Expand Down Expand Up @@ -1479,7 +1479,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/new-command.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to integrate new subcommands</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -864,7 +864,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:35 JST
2023-11-13 12:53:35 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/rebase-from-internal-branch.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to rebase from an internal branch</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -896,7 +896,7 @@ <h1>How to rebase from an internal branch</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/rebuild-from-update-hook.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to rebuild from update hook</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -848,7 +848,7 @@ <h1>How to rebuild from update hook</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/recover-corrupted-blob-object.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to recover a corrupted blob object</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -881,7 +881,7 @@ <h1>How to recover a corrupted blob object</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/recover-corrupted-object-harder.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to recover an object from scratch</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -1190,7 +1190,7 @@ <h2 id="_the_adventure_continues_8230">The adventure continues&#8230;</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/revert-a-faulty-merge.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to revert a faulty merge</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -1026,7 +1026,7 @@ <h1>How to revert a faulty merge</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/revert-branch-rebase.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to revert an existing commit</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -908,7 +908,7 @@ <h1>How to revert an existing commit</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:35 JST
2023-11-13 12:53:35 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/separating-topic-branches.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to separate topic branches</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -842,7 +842,7 @@ <h1>How to separate topic branches</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:36 JST
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/setup-git-server-over-http.html
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@
<body class="article">
<div id="header">
<h1>How to setup Git server over http</h1>
<span id="revdate">2023-11-08</span>
<span id="revdate">2023-11-11</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -1072,7 +1072,7 @@ <h2 id="_troubleshooting">Troubleshooting:</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-11-09 02:04:36 JST
2023-11-13 12:53:35 JST
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit c1f1c70

Please sign in to comment.