Skip to content

Commit 766aae7

Browse files
committed
Autogenerated HTML docs for v2.44.0-616-g548fe3
1 parent 9018cdf commit 766aae7

Some content is hidden

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

45 files changed

+94
-59
lines changed

MyFirstContribution.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

MyFirstObjectWalk.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

RelNotes/2.45.0.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,11 @@ UI, Workflows & Features
8080
* "git pack-refs" learned the "--auto" option, which is a useful
8181
addition to be triggered from "git gc --auto".
8282

83+
* "git add -u <pathspec>" and "git commit [-i] <pathspec>" did not
84+
diagnose a pathspec element that did not match any files in certain
85+
situations, unlike "git add <pathspec>" did.
86+
87+
8388
Performance, Internal Implementation, Development Support etc.
8489

8590
* The code to iterate over refs with the reftable backend has seen
@@ -161,6 +166,13 @@ Performance, Internal Implementation, Development Support etc.
161166
out folks with compilers who have trouble compiling code that uses
162167
the feature.
163168

169+
* Windows binary used to decide the use of unix-domain socket at
170+
build time, but it learned to make the decision at runtime instead.
171+
172+
* The "shared repository" test in the t0610 reftable test failed
173+
under restrictive umask setting (e.g. 007), which has been
174+
corrected.
175+
164176

165177
Fixes since v2.44
166178
-----------------
@@ -347,6 +359,28 @@ Fixes since v2.44
347359
HEAD state, gave the tracking information for the 'foo' branch,
348360
which was pointless.
349361

362+
* "git apply" has been updated to lift the hardcoded pathname length
363+
limit, which in turn allowed a mksnpath() function that is no
364+
longer used.
365+
(merge 708f7e0590 rs/apply-lift-path-length-limit later to maint).
366+
367+
* A file descriptor leak in an error codepath, used when "git apply
368+
--reject" fails to create the *.rej file, has been corrected.
369+
(merge 2b1f456adf rs/apply-reject-fd-leakfix later to maint).
370+
371+
* A config parser callback function fell through instead of returning
372+
after recognising and processing a variable, wasting cycles, which
373+
has been corrected.
374+
(merge a816ccd642 ds/fetch-config-parse-microfix later to maint).
375+
376+
* Fix was added to work around a regression in libcURL 8.7.0 (which has
377+
already been fixed in their tip of the tree).
378+
(merge 92a209bf24 jk/libcurl-8.7-regression-workaround later to maint).
379+
380+
* The variable that holds the value read from the core.excludefile
381+
configuration variable used to leak, which has been corrected.
382+
(merge 0e0fefb29f jc/unleak-core-excludesfile later to maint).
383+
350384
* Other code cleanup, docfix, build fix, etc.
351385
(merge f0e578c69c rs/use-xstrncmpz later to maint).
352386
(merge 83e6eb7d7a ba/credential-test-clean-fix later to maint).
@@ -373,3 +407,4 @@ Fixes since v2.44
373407
(merge 7c43bdf07b rs/strbuf-expand-bad-format later to maint).
374408
(merge 8b68b48d5c ds/typofix-core-config-doc later to maint).
375409
(merge 39bb692152 rs/imap-send-use-xsnprintf later to maint).
410+
(merge 8d320cec60 jc/t2104-style-fixes later to maint).

ReviewingGuidelines.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

SubmittingPatches.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

ToolsForGit.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div class="sect1">

everyday.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

git-remote-helpers.html

Lines changed: 1 addition & 1 deletion
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-04-12</span>
738+
<span id="revdate">2024-04-15</span>
739739
</div>
740740
<div id="content">
741741
<div id="preamble">

howto/coordinate-embargoed-releases.html

Lines changed: 1 addition & 1 deletion
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-04-12 15:22:49 PDT
1041+
2024-04-15 14:40:56 PDT
10421042
</div>
10431043
</div>
10441044
</body>

howto/keep-canonical-history-correct.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
942+
2024-04-15 14:40:56 PDT
943943
</div>
944944
</div>
945945
</body>

howto/maintain-git.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
1482+
2024-04-15 14:40:56 PDT
14831483
</div>
14841484
</div>
14851485
</body>

howto/new-command.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
867+
2024-04-15 14:40:55 PDT
868868
</div>
869869
</div>
870870
</body>

howto/rebase-from-internal-branch.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
899+
2024-04-15 14:40:56 PDT
900900
</div>
901901
</div>
902902
</body>

howto/rebuild-from-update-hook.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
851+
2024-04-15 14:40:56 PDT
852852
</div>
853853
</div>
854854
</body>

howto/recover-corrupted-blob-object.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
884+
2024-04-15 14:40:56 PDT
885885
</div>
886886
</div>
887887
</body>

howto/recover-corrupted-object-harder.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
1193+
2024-04-15 14:40:56 PDT
11941194
</div>
11951195
</div>
11961196
</body>

howto/revert-a-faulty-merge.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
1029+
2024-04-15 14:40:56 PDT
10301030
</div>
10311031
</div>
10321032
</body>

howto/revert-branch-rebase.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
911+
2024-04-15 14:40:55 PDT
912912
</div>
913913
</div>
914914
</body>

howto/separating-topic-branches.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:49 PDT
845+
2024-04-15 14:40:56 PDT
846846
</div>
847847
</div>
848848
</body>

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

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
1075+
2024-04-15 14:40:55 PDT
10761076
</div>
10771077
</div>
10781078
</body>

howto/update-hook-example.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
934+
2024-04-15 14:40:55 PDT
935935
</div>
936936
</div>
937937
</body>

howto/use-git-daemon.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
795+
2024-04-15 14:40:55 PDT
796796
</div>
797797
</div>
798798
</body>

howto/using-merge-subtree.html

Lines changed: 2 additions & 2 deletions
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-04-12</span>
738+
<span id="revdate">2024-04-15</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-04-12 15:22:48 PDT
852+
2024-04-15 14:40:55 PDT
853853
</div>
854854
</div>
855855
</body>

0 commit comments

Comments
 (0)