Skip to content

Commit d6b0be5

Browse files
committed
Autogenerated HTML docs for v2.46.0-rc0-106-g1c4a23
1 parent ae0f901 commit d6b0be5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+87
-61
lines changed

DecisionMaking.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Decision-Making Process in the Git Project</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstContribution.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Contribution to the Git Project</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstObjectWalk.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>My First Object Walk</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

RelNotes/2.46.0.txt

+22
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ UI, Workflows & Features
9494

9595
* A handful of entries are added to the GitFAQ document.
9696

97+
* "git var GIT_SHELL_PATH" should report the path to the shell used
98+
to spawn external commands, but it didn't do so on Windows, which
99+
has been corrected.
100+
97101

98102
Performance, Internal Implementation, Development Support etc.
99103

@@ -223,6 +227,15 @@ Performance, Internal Implementation, Development Support etc.
223227
sparse index to handle working tree cruft that are outside of the
224228
sparse checkout.
225229

230+
* The test framework learned to take the test body not as a single
231+
string but as a here-document.
232+
233+
* "git push '' HEAD:there" used to hit a BUG(); it has been corrected
234+
to die with "fatal: bad repository ''".
235+
236+
* What happens when http.cookieFile gets the special value "" has
237+
been clarified in the documentation.
238+
226239

227240
Fixes since v2.45
228241
-----------------
@@ -424,6 +437,15 @@ Fixes since v2.45
424437
Cc: list after running through sanitize_address by "git send-email".
425438
(merge c852531f45 cb/send-email-sanitize-trailer-addresses later to maint).
426439

440+
* Tests that use GIT_TEST_SANITIZE_LEAK_LOG feature got their exit
441+
status inverted, which has been corrected.
442+
(merge 8c1d6691bc rj/test-sanitize-leak-log-fix later to maint).
443+
444+
* The http.cookieFile and http.saveCookies configuration variables
445+
have a few values that need to be avoided, which are now ignored
446+
with warning messages.
447+
(merge 4f5822076f jc/http-cookiefile later to maint).
448+
427449
* Other code cleanup, docfix, build fix, etc.
428450
(merge 493fdae046 ew/object-convert-leakfix later to maint).
429451
(merge 00f3661a0a ss/doc-eol-attr-fix later to maint).

ReviewingGuidelines.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Reviewing Patches in the Git Project</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

SubmittingPatches.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Submitting Patches</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

ToolsForGit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Tools for developing Git</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

everyday.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Everyday Git With 20 Commands Or So</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

git-config.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -7702,6 +7702,9 @@ <h3 id="_variables">Variables</h3>
77027702
in the Git http session, if they match the server. The file format
77037703
of the file to read cookies from should be plain HTTP headers or
77047704
the Netscape/Mozilla cookie file format (see <code>curl(1)</code>).
7705+
Set it to an empty string, to accept only new cookies from
7706+
the server and send them back in successive requests within same
7707+
connection.
77057708
NOTE that the file specified with http.cookieFile is used only as
77067709
input unless http.saveCookies is set.
77077710
</p>
@@ -7712,7 +7715,8 @@ <h3 id="_variables">Variables</h3>
77127715
<dd>
77137716
<p>
77147717
If set, store cookies received during requests to the file specified by
7715-
http.cookieFile. Has no effect if http.cookieFile is unset.
7718+
http.cookieFile. Has no effect if http.cookieFile is unset, or set to
7719+
an empty string.
77167720
</p>
77177721
</dd>
77187722
<dt class="hdlist1">

git-remote-helpers.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>git-remote-helpers</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

howto/coordinate-embargoed-releases.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ <h3 id="_example_mail_to_a_href_mailto_oss_security_lists_openwall_com_oss_secur
10381038
<div id="footer">
10391039
<div id="footer-text">
10401040
Last updated
1041-
2024-07-16 15:50:50 PDT
1041+
2024-07-17 13:35:44 PDT
10421042
</div>
10431043
</div>
10441044
</body>

howto/keep-canonical-history-correct.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>Keep authoritative canonical history correct with git pull</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -939,7 +939,7 @@ <h1>Keep authoritative canonical history correct with git pull</h1>
939939
<div id="footer">
940940
<div id="footer-text">
941941
Last updated
942-
2024-07-16 15:50:50 PDT
942+
2024-07-17 13:35:44 PDT
943943
</div>
944944
</div>
945945
</body>

howto/maintain-git.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to maintain Git</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">
@@ -1479,7 +1479,7 @@ <h3 id="_preparing_a_merge_fix">Preparing a "merge-fix"</h3>
14791479
<div id="footer">
14801480
<div id="footer-text">
14811481
Last updated
1482-
2024-07-16 15:50:50 PDT
1482+
2024-07-17 13:35:44 PDT
14831483
</div>
14841484
</div>
14851485
</body>

howto/new-command.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to integrate new subcommands</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -864,7 +864,7 @@ <h2 id="_integrating_a_command">Integrating a command</h2>
864864
<div id="footer">
865865
<div id="footer-text">
866866
Last updated
867-
2024-07-16 15:50:48 PDT
867+
2024-07-17 13:35:43 PDT
868868
</div>
869869
</div>
870870
</body>

howto/rebase-from-internal-branch.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to rebase from an internal branch</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -896,7 +896,7 @@ <h1>How to rebase from an internal branch</h1>
896896
<div id="footer">
897897
<div id="footer-text">
898898
Last updated
899-
2024-07-16 15:50:50 PDT
899+
2024-07-17 13:35:44 PDT
900900
</div>
901901
</div>
902902
</body>

howto/rebuild-from-update-hook.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to rebuild from update hook</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -848,7 +848,7 @@ <h1>How to rebuild from update hook</h1>
848848
<div id="footer">
849849
<div id="footer-text">
850850
Last updated
851-
2024-07-16 15:50:50 PDT
851+
2024-07-17 13:35:44 PDT
852852
</div>
853853
</div>
854854
</body>

howto/recover-corrupted-blob-object.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to recover a corrupted blob object</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -881,7 +881,7 @@ <h1>How to recover a corrupted blob object</h1>
881881
<div id="footer">
882882
<div id="footer-text">
883883
Last updated
884-
2024-07-16 15:50:49 PDT
884+
2024-07-17 13:35:44 PDT
885885
</div>
886886
</div>
887887
</body>

howto/recover-corrupted-object-harder.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to recover an object from scratch</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -1190,7 +1190,7 @@ <h2 id="_the_adventure_continues_8230">The adventure continues&#8230;</h2>
11901190
<div id="footer">
11911191
<div id="footer-text">
11921192
Last updated
1193-
2024-07-16 15:50:49 PDT
1193+
2024-07-17 13:35:44 PDT
11941194
</div>
11951195
</div>
11961196
</body>

howto/revert-a-faulty-merge.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to revert a faulty merge</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -1026,7 +1026,7 @@ <h1>How to revert a faulty merge</h1>
10261026
<div id="footer">
10271027
<div id="footer-text">
10281028
Last updated
1029-
2024-07-16 15:50:49 PDT
1029+
2024-07-17 13:35:44 PDT
10301030
</div>
10311031
</div>
10321032
</body>

howto/revert-branch-rebase.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to revert an existing commit</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -908,7 +908,7 @@ <h1>How to revert an existing commit</h1>
908908
<div id="footer">
909909
<div id="footer-text">
910910
Last updated
911-
2024-07-16 15:50:48 PDT
911+
2024-07-17 13:35:43 PDT
912912
</div>
913913
</div>
914914
</body>

howto/separating-topic-branches.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to separate topic branches</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -842,7 +842,7 @@ <h1>How to separate topic branches</h1>
842842
<div id="footer">
843843
<div id="footer-text">
844844
Last updated
845-
2024-07-16 15:50:49 PDT
845+
2024-07-17 13:35:44 PDT
846846
</div>
847847
</div>
848848
</body>

howto/setup-git-server-over-http.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to setup Git server over http</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -1072,7 +1072,7 @@ <h2 id="_troubleshooting">Troubleshooting:</h2>
10721072
<div id="footer">
10731073
<div id="footer-text">
10741074
Last updated
1075-
2024-07-16 15:50:49 PDT
1075+
2024-07-17 13:35:43 PDT
10761076
</div>
10771077
</div>
10781078
</body>

howto/update-hook-example.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to use the update hook</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -931,7 +931,7 @@ <h1>How to use the update hook</h1>
931931
<div id="footer">
932932
<div id="footer-text">
933933
Last updated
934-
2024-07-16 15:50:49 PDT
934+
2024-07-17 13:35:43 PDT
935935
</div>
936936
</div>
937937
</body>

howto/use-git-daemon.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to use git-daemon</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -792,7 +792,7 @@ <h1>How to use git-daemon</h1>
792792
<div id="footer">
793793
<div id="footer-text">
794794
Last updated
795-
2024-07-16 15:50:49 PDT
795+
2024-07-17 13:35:43 PDT
796796
</div>
797797
</div>
798798
</body>

howto/using-merge-subtree.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@
735735
<body class="article">
736736
<div id="header">
737737
<h1>How to use the subtree merge strategy</h1>
738-
<span id="revdate">2024-07-16</span>
738+
<span id="revdate">2024-07-17</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">
@@ -849,7 +849,7 @@ <h2 id="_additional_tips">Additional tips</h2>
849849
<div id="footer">
850850
<div id="footer-text">
851851
Last updated
852-
2024-07-16 15:50:48 PDT
852+
2024-07-17 13:35:43 PDT
853853
</div>
854854
</div>
855855
</body>

0 commit comments

Comments
 (0)