Skip to content

Commit 8b13cbe

Browse files
committed
Autogenerated HTML docs for v2.50.0-rc0
1 parent e22a3d2 commit 8b13cbe

30 files changed

+61
-28
lines changed

RelNotes/2.50.0.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ UI, Workflows & Features
8585
* The commit title in the "rebase -i" todo file are now prefixed with
8686
'#', just like a merge commit being replayed.
8787

88+
* "git receive-pack" optionally learns not to care about connectivity
89+
check, which can be useful when the repository arranges to ensure
90+
connectivity by some other means.
91+
8892

8993
Performance, Internal Implementation, Development Support etc.
9094
--------------------------------------------------------------
@@ -185,6 +189,10 @@ Performance, Internal Implementation, Development Support etc.
185189
186190
* Assorted fixes for issues found with CodeQL.
187191
192+
* Remove the leftover hints to the test framework to mark tests that
193+
do not pass the leak checker tests, as they should no longer be
194+
needed.
195+
188196
189197
Fixes since v2.49
190198
-----------------

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@ <h3 id="_gnus">Gnus</h3>
15841584
</div>
15851585
<div id="footer">
15861586
<div id="footer-text">
1587-
Last updated 2025-03-14 09:40:06 -0700
1587+
Last updated 2025-05-28 08:53:48 -0700
15881588
</div>
15891589
</div>
15901590
</body>

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ <h4 id="_httpswww_kernel_orgdochtmlv4_10processcoding_style_htmlyou_ve_made_a_me
520520
</div>
521521
<div id="footer">
522522
<div id="footer-text">
523-
Last updated 2025-02-14 21:38:14 -0800
523+
Last updated 2025-03-26 00:41:02 -0700
524524
</div>
525525
</div>
526526
</body>

git-bisect.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1091,7 +1091,7 @@ <h2 id="_git">GIT</h2>
10911091
</div>
10921092
<div id="footer">
10931093
<div id="footer-text">
1094-
Last updated 2025-03-26 16:41:02 +0900
1094+
Last updated 2025-03-26 00:41:02 -0700
10951095
</div>
10961096
</div>
10971097
</body>

git-check-attr.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ <h2 id="_git">GIT</h2>
642642
</div>
643643
<div id="footer">
644644
<div id="footer-text">
645-
Last updated 2025-03-26 16:41:02 +0900
645+
Last updated 2025-03-26 00:41:02 -0700
646646
</div>
647647
</div>
648648
</body>

git-column.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ <h2 id="_git">GIT</h2>
678678
</div>
679679
<div id="footer">
680680
<div id="footer-text">
681-
Last updated 2025-03-26 16:41:02 +0900
681+
Last updated 2025-03-26 00:41:02 -0700
682682
</div>
683683
</div>
684684
</body>

git-cvsserver.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ <h2 id="_git">GIT</h2>
10401040
</div>
10411041
<div id="footer">
10421042
<div id="footer-text">
1043-
Last updated 2025-02-14 21:38:14 -0800
1043+
Last updated 2025-03-26 00:41:02 -0700
10441044
</div>
10451045
</div>
10461046
</body>

git-fast-export.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ <h2 id="_git">GIT</h2>
816816
</div>
817817
<div id="footer">
818818
<div id="footer-text">
819-
Last updated 2025-03-29 17:09:47 +0900
819+
Last updated 2025-03-29 01:09:47 -0700
820820
</div>
821821
</div>
822822
</body>

git-p4.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@ <h2 id="_git">GIT</h2>
15141514
</div>
15151515
<div id="footer">
15161516
<div id="footer-text">
1517-
Last updated 2025-02-14 21:38:14 -0800
1517+
Last updated 2025-03-26 00:41:02 -0700
15181518
</div>
15191519
</div>
15201520
</body>

git-receive-pack.adoc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@ OPTIONS
4646
`$GIT_URL/info/refs?service=git-receive-pack` requests. See
4747
`--http-backend-info-refs` in linkgit:git-upload-pack[1].
4848

49+
--skip-connectivity-check::
50+
Bypasses the connectivity checks that validate the existence of all
51+
objects in the transitive closure of reachable objects. This option is
52+
intended for server operators that want to implement their own object
53+
connectivity validation outside of Git. This is useful in such cases
54+
where the server-side knows additional information about how Git is
55+
being used and thus can rely on certain guarantees to more efficiently
56+
compute object connectivity that Git itself cannot make. Usage of this
57+
option without a reliable external mechanism to ensure full reachable
58+
object connectivity risks corrupting the repository and should not be
59+
used in the general case.
60+
4961
PRE-RECEIVE HOOK
5062
----------------
5163
Before any ref is updated, if $GIT_DIR/hooks/pre-receive file exists

0 commit comments

Comments
 (0)