Skip to content

Commit f4e4f53

Browse files
committed
Autogenerated HTML docs for v2.47.0-229-g8f8d6
1 parent dc39238 commit f4e4f53

File tree

78 files changed

+381
-199
lines changed

Some content is hidden

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

78 files changed

+381
-199
lines changed

BreakingChanges.txt

+20-1
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,29 @@ over time. If circumstances change, an earlier decision to deprecate or change
5959
something may need to be revisited from time to time. So do not take items on
6060
this list to mean "it is settled, do not waste our time bringing it up again".
6161

62+
== Procedure
63+
64+
Discussing the desire to make breaking changes, declaring that breaking
65+
changes are made at a certain version boundary, and recording these
66+
decisions in this document, are necessary but not sufficient.
67+
Because such changes are expected to be numerous, and the design and
68+
implementation of them are expected to span over time, they have to
69+
be deployable trivially at such a version boundary.
70+
71+
The breaking changes MUST be guarded with the a compile-time switch,
72+
WITH_BREAKING_CHANGES, to help this process. When built with it,
73+
the resulting Git binary together with its documentation would
74+
behave as if these breaking changes slated for the next big version
75+
boundary are already in effect. We may also want to have a CI job
76+
or two to exercise the work-in-progress version of Git with these
77+
breaking changes.
78+
79+
6280
== Git 3.0
6381

6482
The following subsections document upcoming breaking changes for Git 3.0. There
65-
is no planned release date for this breaking version yet.
83+
is no planned release date for this breaking version yet. The early
84+
adopter configuration used for changes for this release is `feature.git3`.
6685

6786
Proposed changes and removals only include items which are "ready" to be done.
6887
In other words, this is not supposed to be a wishlist of features that should

DecisionMaking.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Decision-Making Process in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstContribution.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Contribution to the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

MyFirstObjectWalk.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>My First Object Walk</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

RelNotes/2.45.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ UI, Workflows & Features
99
With "git init --ref-format=reftable", hopefully it would be a lot
1010
more efficient to manage a repository with many references.
1111

12-
* "git checkout -p" and friends learned that that "@" is a synonym
12+
* "git checkout -p" and friends learned that "@" is a synonym
1313
for "HEAD".
1414

1515
* Variants of vimdiff learned to honor mergetool.<variant>.layout

RelNotes/2.46.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ UI, Workflows & Features
7878
turn on cover letters automatically (unless told never to enable
7979
cover letter with "--no-cover-letter" and such).
8080

81-
* The "--heads" option of "ls-remote" and "show-ref" has been been
81+
* The "--heads" option of "ls-remote" and "show-ref" has been
8282
deprecated; "--branches" replaces "--heads".
8383

8484
* For over a year, setting add.interactive.useBuiltin configuration

RelNotes/2.48.0.txt

+105
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Git v2.48 Release Notes
44
UI, Workflows & Features
55
------------------------
66

7+
* A new configuration variable remote.<name>.serverOption makes the
8+
transport layer act as if the --serverOption=<value> option is
9+
given from the command line.
10+
11+
* "git rebase --rebase-merges" now uses branch names as labels when
12+
able.
13+
14+
* Describe the policy to introduce breaking changes.
15+
16+
* Teach 'git notes add' and 'git notes append' a new '-e' flag,
17+
instructing them to open the note in $GIT_EDITOR before saving.
18+
719
Performance, Internal Implementation, Development Support etc.
820
--------------------------------------------------------------
921

@@ -18,6 +30,43 @@ Performance, Internal Implementation, Development Support etc.
1830
allocation function given to it may fail to allocate and to deal
1931
with such an error.
2032

33+
* An extra worktree attached to a repository points at each other to
34+
allow finding the repository from the worktree and vice versa
35+
possible. Turn this linkage to relative paths.
36+
37+
* Enable Windows-based CI in GitLab.
38+
39+
* Commands that can also work outside Git have learned to take the
40+
repository instance "repo" when we know we are in a repository, and
41+
NULL when we are not, in a parameter. The uses of the_repository
42+
variable in a few of them have been removed using the new calling
43+
convention.
44+
45+
* The reftable sub-system grew a new reftable-specific strbuf
46+
replacement to reduce its dependency on Git-specific data
47+
structures.
48+
49+
* The ref-filter machinery learns to recognize and avoid cases where
50+
sorting would be redundant.
51+
52+
* Various platform compatibility fixes split out of the larger effort
53+
to use Meson as the primary build tool.
54+
55+
* Treat ECONNABORTED the same as ECONNRESET in 'git credential-cache'
56+
to work around a possible Cygwin regression. This resolves a race
57+
condition caused by changes in Cygwin's handling of socket
58+
closures, allowing the client to exit cleanly when encountering
59+
ECONNABORTED.
60+
61+
* Demonstrate an assertion failure in 'git mv'.
62+
63+
* Documentation update to clarify that 'uploadpack.allowAnySHA1InWant'
64+
implies both 'allowTipSHA1InWant' and 'allowReachableSHA1InWant'.
65+
66+
* Replace various calls to atoi() with strtol_i() and strtoul_ui(),
67+
and add improved error handling.
68+
69+
* Documentation updates to 'git-update-ref(1)'.
2170

2271
Fixes since v2.47
2372
-----------------
@@ -30,6 +79,62 @@ Fixes since v2.47
3079
had been identified and fixed.
3180
(merge fc5589d6c1 ds/line-log-asan-fix later to maint).
3281

82+
* On macOS, fsmonitor can fall into a race condition that results in
83+
a client waiting forever to be notified for an event that have
84+
already happened. This problem has been corrected.
85+
(merge 51907f8fee jk/fsmonitor-event-listener-race-fix later to maint).
86+
87+
* "git maintenance start" crashed due to an uninitialized variable
88+
reference, which has been corrected.
89+
(merge c95547a394 ps/maintenance-start-crash-fix later to maint).
90+
91+
* Fail gracefully instead of crashing when attempting to write the
92+
contents of a corrupt in-core index as a tree object.
93+
(merge ecb5c4318c ps/cache-tree-w-broken-index-entry later to maint).
94+
95+
* A "git fetch" from the superproject going down to a submodule used
96+
a wrong remote when the default remote names are set differently
97+
between them.
98+
(merge 0c1a9987da db/submodule-fetch-with-remote-name-fix later to maint).
99+
100+
* Fixes compile time warnings with 64-bit MSVC.
101+
(merge 386d372031 sk/msvc-warnings later to maint).
102+
103+
* Teaches 'shortlog' to explicitly use SHA-1 when operating outside
104+
of a repository.
105+
(merge b33001645e wm/shortlog-hash later to maint).
106+
107+
* Fix 'git grep' regression on macOS by disabling lookahead when
108+
encountering invalid UTF-8 byte sequences.
109+
(merge ce025ae4f6 rs/grep-lookahead later to maint).
110+
111+
* The dumb-http code regressed when the result of re-indexing a pack
112+
yielded an *.idx file that differs in content from the *.idx file
113+
it downloaded from the remote. This has been corrected by no longer
114+
relying on: the *.idx file we got from the remote.
115+
(merge 863f2459a2 jk/dumb-http-finalize later to maint).
116+
33117
* Other code cleanup, docfix, build fix, etc.
34118
(merge 66893a14d0 ps/leakfixes-part-8 later to maint).
35119
(merge 1164e270b5 jk/output-prefix-cleanup later to maint).
120+
(merge f36b8cbaef jh/config-unset-doc-fix later to maint).
121+
(merge 4154ed4108 js/doc-platform-support-link-fix later to maint).
122+
(merge 77af53f56f aa/t7300-modernize later to maint).
123+
(merge 8ead1bba3e jc/doc-refspec-syntax later to maint).
124+
(merge 432f666aa6 kn/loose-object-layer-wo-global-hash later to maint).
125+
(merge c4b8fb6ef2 kh/merge-tree-doc later to maint).
126+
(merge b8139c8f4e kh/checkout-ignore-other-docfix later to maint).
127+
(merge 6dab49b9fb tc/bundle-uri-leakfix later to maint).
128+
(merge f1ed39987b xx/protocol-v2-doc-markup-fix later to maint).
129+
(merge 41869f7447 ak/typofixes later to maint).
130+
(merge f1eea0b620 ak/typofix later to maint).
131+
(merge dcd590a39d bf/t-readme-mention-reftable later to maint).
132+
(merge 52acf6771b kh/submitting-patches later to maint).
133+
(merge a73070fbd4 ks/t4205-fixup later to maint).
134+
(merge 9e362dd060 co/t6050-pipefix later to maint).
135+
(merge 91687cd13f sk/t7011-cleanup later to maint).
136+
(merge 19c291e5b2 ua/t3404-cleanup later to maint).
137+
(merge c32d4a8cfe ss/duplicate-typos later to maint).
138+
(merge 09bf122507 sk/t9101-cleanup later to maint).
139+
(merge c348191afe ak/t1016-cleanup later to maint).
140+
(merge f56f9d6c0b ak/more-typofixes later to maint).

ReviewingGuidelines.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Reviewing Patches in the Git Project</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

SubmittingPatches.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Submitting Patches</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">
@@ -967,7 +967,7 @@ <h3 id="sign-off">Certify your work by adding your <code>Signed-off-by</code> tr
967967
don&#8217;t hide your real name.</p>
968968
</div>
969969
<div id="commit-trailers" class="paragraph">
970-
<p>If you like, you can put extra tags at the end:</p>
970+
<p>If you like, you can put extra trailers at the end:</p>
971971
</div>
972972
<div class="olist arabic">
973973
<ol class="arabic">
@@ -980,7 +980,7 @@ <h3 id="sign-off">Certify your work by adding your <code>Signed-off-by</code> tr
980980
the patch attempts to modify liked the patch.</p>
981981
</li>
982982
<li>
983-
<p><code>Reviewed-by:</code>, unlike the other tags, can only be offered by the
983+
<p><code>Reviewed-by:</code>, unlike the other trailers, can only be offered by the
984984
reviewers themselves when they are completely satisfied with the
985985
patch after a detailed analysis.</p>
986986
</li>
@@ -1012,7 +1012,7 @@ <h3 id="sign-off">Certify your work by adding your <code>Signed-off-by</code> tr
10121012
highlighted above.</p>
10131013
</div>
10141014
<div class="paragraph">
1015-
<p>Only capitalize the very first letter of tags, i.e. favor
1015+
<p>Only capitalize the very first letter of the trailer, i.e. favor
10161016
"Signed-off-by" over "Signed-Off-By" and "Acked-by:" over "Acked-By".</p>
10171017
</div>
10181018
</div>
@@ -1582,7 +1582,7 @@ <h3 id="_gnus">Gnus</h3>
15821582
</div>
15831583
<div id="footer">
15841584
<div id="footer-text">
1585-
Last updated 2024-10-07 07:52:33 -0700
1585+
Last updated 2024-11-01 22:46:57 -0700
15861586
</div>
15871587
</div>
15881588
</body>

SubmittingPatches.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -412,13 +412,13 @@ Also notice that a real name is used in the `Signed-off-by` trailer. Please
412412
don't hide your real name.
413413

414414
[[commit-trailers]]
415-
If you like, you can put extra tags at the end:
415+
If you like, you can put extra trailers at the end:
416416

417417
. `Reported-by:` is used to credit someone who found the bug that
418418
the patch attempts to fix.
419419
. `Acked-by:` says that the person who is more familiar with the area
420420
the patch attempts to modify liked the patch.
421-
. `Reviewed-by:`, unlike the other tags, can only be offered by the
421+
. `Reviewed-by:`, unlike the other trailers, can only be offered by the
422422
reviewers themselves when they are completely satisfied with the
423423
patch after a detailed analysis.
424424
. `Tested-by:` is used to indicate that the person applied the patch
@@ -436,7 +436,7 @@ While you can also create your own trailer if the situation warrants it, we
436436
encourage you to instead use one of the common trailers in this project
437437
highlighted above.
438438

439-
Only capitalize the very first letter of tags, i.e. favor
439+
Only capitalize the very first letter of the trailer, i.e. favor
440440
"Signed-off-by" over "Signed-Off-By" and "Acked-by:" over "Acked-By".
441441

442442
[[git-tools]]

ToolsForGit.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Tools for developing Git</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

everyday.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@
442442
<div id="header">
443443
<h1>Everyday Git With 20 Commands Or So</h1>
444444
<div class="details">
445-
<span id="revdate">2024-10-10</span>
445+
<span id="revdate">2024-11-01</span>
446446
</div>
447447
</div>
448448
<div id="content">

fetch-options.txt

+3
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,9 @@ endif::git-pull[]
305305
unknown ones, is server-specific.
306306
When multiple `--server-option=<option>` are given, they are all
307307
sent to the other side in the order listed on the command line.
308+
When no `--server-option=<option>` is given from the command line,
309+
the values of configuration variable `remote.<name>.serverOption`
310+
are used instead.
308311

309312
--show-forced-updates::
310313
By default, git checks if a branch is force-updated during

git-checkout.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -790,10 +790,10 @@ <h2 id="_options">OPTIONS</h2>
790790
</dd>
791791
<dt class="hdlist1">--ignore-other-worktrees</dt>
792792
<dd>
793-
<p><code>git</code> <code>checkout</code> refuses when the wanted ref is already checked
794-
out by another worktree. This option makes it check the ref
795-
out anyway. In other words, the ref can be held by more than one
796-
worktree.</p>
793+
<p><code>git</code> <code>checkout</code> refuses when the wanted branch is already checked
794+
out or otherwise in use by another worktree. This option makes
795+
it check the branch out anyway. In other words, the branch can
796+
be in use by more than one worktree.</p>
797797
</dd>
798798
<dt class="hdlist1">--overwrite-ignore</dt>
799799
<dt class="hdlist1">--no-overwrite-ignore</dt>
@@ -1279,7 +1279,7 @@ <h2 id="_git">GIT</h2>
12791279
</div>
12801280
<div id="footer">
12811281
<div id="footer-text">
1282-
Last updated 2024-01-02 14:28:43 -0800
1282+
Last updated 2024-11-01 22:46:55 -0700
12831283
</div>
12841284
</div>
12851285
</body>

git-checkout.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -290,10 +290,10 @@ Note that this option uses the no overlay mode by default (see also
290290
`--overlay`), and currently doesn't support overlay mode.
291291

292292
--ignore-other-worktrees::
293-
`git checkout` refuses when the wanted ref is already checked
294-
out by another worktree. This option makes it check the ref
295-
out anyway. In other words, the ref can be held by more than one
296-
worktree.
293+
`git checkout` refuses when the wanted branch is already checked
294+
out or otherwise in use by another worktree. This option makes
295+
it check the branch out anyway. In other words, the branch can
296+
be in use by more than one worktree.
297297

298298
--overwrite-ignore::
299299
--no-overwrite-ignore::

git-clone.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,10 @@ <h2 id="_options">OPTIONS</h2>
615615
character. The server&#8217;s handling of server options, including
616616
unknown ones, is server-specific.
617617
When multiple <code>--server-option=</code><em>&lt;option&gt;</em> are given, they are all
618-
sent to the other side in the order listed on the command line.</p>
618+
sent to the other side in the order listed on the command line.
619+
When no <code>--server-option=</code><em>&lt;option&gt;</em> is given from the command
620+
line, the values of configuration variable <code>remote.</code><em>&lt;name&gt;</em><code>.serverOption</code>
621+
are used instead.</p>
619622
</dd>
620623
<dt class="hdlist1"><code>-n</code></dt>
621624
<dt class="hdlist1"><code>--no-checkout</code></dt>
@@ -1121,7 +1124,7 @@ <h2 id="_git">GIT</h2>
11211124
</div>
11221125
<div id="footer">
11231126
<div id="footer-text">
1124-
Last updated 2024-10-11 11:55:10 -0700
1127+
Last updated 2024-11-01 22:46:55 -0700
11251128
</div>
11261129
</div>
11271130
</body>

git-clone.txt

+3
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,9 @@ objects from the source repository into a pack in the cloned repository.
149149
unknown ones, is server-specific.
150150
When multiple `--server-option=<option>` are given, they are all
151151
sent to the other side in the order listed on the command line.
152+
When no ++--server-option=++__<option>__ is given from the command
153+
line, the values of configuration variable `remote.<name>.serverOption`
154+
are used instead.
152155

153156
`-n`::
154157
`--no-checkout`::

0 commit comments

Comments
 (0)