Skip to content

Commit

Permalink
Autogenerated HTML docs for v2.42.0-424-gceadf0
Browse files Browse the repository at this point in the history
  • Loading branch information
gitster committed Oct 20, 2023
1 parent 362e04f commit 359f024
Show file tree
Hide file tree
Showing 46 changed files with 79 additions and 65 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-10-18</span>
<span id="revdate">2023-10-20</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-10-18</span>
<span id="revdate">2023-10-20</span>
</div>
<div id="content">
<div class="sect1">
Expand Down
12 changes: 12 additions & 0 deletions RelNotes/2.43.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,9 @@ UI, Workflows & Features
* "git repack" learned "--max-cruft-size" to prevent cruft packs from
growing without bounds.

* "git merge-tree" learned to take strategy backend specific options
via the "-X" option, like "git merge" does.


Performance, Internal Implementation, Development Support etc.

Expand Down Expand Up @@ -126,6 +129,10 @@ Performance, Internal Implementation, Development Support etc.

* Test coverage for trailers has been improved.

* The code to iterate over loose references have been optimized to
reduce the number of lstat() system calls.
(merge 2cdb796101 vd/loose-ref-iteration-optimization later to maint).


Fixes since v2.42
-----------------
Expand Down Expand Up @@ -250,6 +257,10 @@ Fixes since v2.42
option is used.
(merge e95bafc52f jc/merge-ort-attr-index-fix later to maint).

* Unlike "git log --pretty=%D", "git log --pretty="%(decorate)" did
not auto-initialize the decoration subsystem, which has been
corrected.

* Other code cleanup, docfix, build fix, etc.
(merge fd3ba590d8 ws/git-push-doc-grammofix later to maint).
(merge 5f33a843de ds/upload-pack-error-sequence-fix later to maint).
Expand All @@ -274,3 +285,4 @@ Fixes since v2.42
(merge f4cbb32c27 rs/parse-opt-ctx-cleanup later to maint).
(merge badf2fe1c3 jk/decoration-and-other-leak-fixes later to maint).
(merge cebfaaa333 sn/cat-file-doc-update later to maint).
(merge 8b3aa36f5a ps/rewritten-is-per-worktree-doc later to maint).
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-10-18</span>
<span id="revdate">2023-10-20</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18</span>
<span id="revdate">2023-10-20</span>
</div>
<div id="content">
<div id="preamble">
Expand Down
9 changes: 5 additions & 4 deletions git-worktree.html
Original file line number Diff line number Diff line change
Expand Up @@ -1145,7 +1145,8 @@ <h2 id="_refs">REFS</h2>
<div class="paragraph"><p>In general, all pseudo refs are per-worktree and all refs starting with
<code>refs/</code> are shared. Pseudo refs are ones like <code>HEAD</code> which are directly
under <code>$GIT_DIR</code> instead of inside <code>$GIT_DIR/refs</code>. There are exceptions,
however: refs inside <code>refs/bisect</code> and <code>refs/worktree</code> are not shared.</p></div>
however: refs inside <code>refs/bisect</code>, <code>refs/worktree</code> and <code>refs/rewritten</code> are
not shared.</p></div>
<div class="paragraph"><p>Refs that are per-worktree can still be accessed from another worktree via
two special paths, <code>main-worktree</code> and <code>worktrees</code>. The former gives
access to per-worktree refs of the main worktree, while the latter to all
Expand Down Expand Up @@ -1228,8 +1229,8 @@ <h2 id="_details">DETAILS</h2>
<code>/path/other/test-next/.git/HEAD</code> or <code>/path/main/.git/HEAD</code>) while <code>git
rev-parse --git-path refs/heads/master</code> uses
<code>$GIT_COMMON_DIR</code> and returns <code>/path/main/.git/refs/heads/master</code>,
since refs are shared across all worktrees, except <code>refs/bisect</code> and
<code>refs/worktree</code>.</p></div>
since refs are shared across all worktrees, except <code>refs/bisect</code>,
<code>refs/worktree</code> and <code>refs/rewritten</code>.</p></div>
<div class="paragraph"><p>See <a href="gitrepository-layout.html">gitrepository-layout(5)</a> for more information. The rule of
thumb is do not make any assumption about whether a path belongs to
<code>$GIT_DIR</code> or <code>$GIT_COMMON_DIR</code> when you need to directly access something
Expand Down Expand Up @@ -1398,7 +1399,7 @@ <h2 id="_git">GIT</h2>
<div id="footer">
<div id="footer-text">
Last updated
2023-06-23 13:24:09 PDT
2023-10-20 16:56:50 PDT
</div>
</div>
</body>
Expand Down
7 changes: 4 additions & 3 deletions git-worktree.txt
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,8 @@ rules and how to access refs of one worktree from another.
In general, all pseudo refs are per-worktree and all refs starting with
`refs/` are shared. Pseudo refs are ones like `HEAD` which are directly
under `$GIT_DIR` instead of inside `$GIT_DIR/refs`. There are exceptions,
however: refs inside `refs/bisect` and `refs/worktree` are not shared.
however: refs inside `refs/bisect`, `refs/worktree` and `refs/rewritten` are
not shared.

Refs that are per-worktree can still be accessed from another worktree via
two special paths, `main-worktree` and `worktrees`. The former gives
Expand Down Expand Up @@ -363,8 +364,8 @@ linked worktree `git rev-parse --git-path HEAD` returns
`/path/other/test-next/.git/HEAD` or `/path/main/.git/HEAD`) while `git
rev-parse --git-path refs/heads/master` uses
`$GIT_COMMON_DIR` and returns `/path/main/.git/refs/heads/master`,
since refs are shared across all worktrees, except `refs/bisect` and
`refs/worktree`.
since refs are shared across all worktrees, except `refs/bisect`,
`refs/worktree` and `refs/rewritten`.

See linkgit:gitrepository-layout[5] for more information. The rule of
thumb is do not make any assumption about whether a path belongs to
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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:51 PDT
2023-10-20 16:57:22 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:53 PDT
2023-10-20 16:57:24 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:51 PDT
2023-10-20 16:57:22 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:52 PDT
2023-10-20 16:57:23 PDT
</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-10-18</span>
<span id="revdate">2023-10-20</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-10-18 13:44:52 PDT
2023-10-20 16:57:23 PDT
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/update-hook-example.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 use the update hook</h1>
<span id="revdate">2023-10-18</span>
<span id="revdate">2023-10-20</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -931,7 +931,7 @@ <h1>How to use the update hook</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-10-18 13:44:52 PDT
2023-10-20 16:57:23 PDT
</div>
</div>
</body>
Expand Down
4 changes: 2 additions & 2 deletions howto/use-git-daemon.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 use git-daemon</h1>
<span id="revdate">2023-10-18</span>
<span id="revdate">2023-10-20</span>
</div>
<div id="content">
<div id="preamble">
Expand Down Expand Up @@ -792,7 +792,7 @@ <h1>How to use git-daemon</h1>
<div id="footer">
<div id="footer-text">
Last updated
2023-10-18 13:44:52 PDT
2023-10-20 16:57:23 PDT
</div>
</div>
</body>
Expand Down
Loading

0 comments on commit 359f024

Please sign in to comment.