Skip to content

Commit 0d2ffe3

Browse files
committed
Autogenerated HTML docs for v2.51.1-488-gf2299
1 parent 273ab40 commit 0d2ffe3

File tree

5 files changed

+74
-31
lines changed

5 files changed

+74
-31
lines changed

RelNotes/2.52.0.adoc

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Performance, Internal Implementation, Development Support etc.
100100
101101
* CodingGuidelines now spells out how bitfields are to be written.
102102
103-
* Adjust to the way newer versions of cURL selectivel enables tracing
103+
* Adjust to the way newer versions of cURL selectively enable tracing
104104
options, so that our tests can continue to work.
105105
(merge 1b5a6bfff3 jk/curl-global-trace-components later to maint).
106106
@@ -127,6 +127,10 @@ Performance, Internal Implementation, Development Support etc.
127127
* Documentation for "git log --pretty" options has been updated
128128
to make it easier to translate.
129129
130+
* Instead of three library archives (one for git, one for reftable,
131+
and one for xdiff), roll everything into a single libgit.a archive.
132+
This would help later effort to FFI into Rust.
133+
130134
131135
Fixes since v2.51
132136
-----------------
@@ -212,13 +216,13 @@ including security updates, are included in this release.
212216
name.
213217
(merge bcb20dda83 js/doc-gitk-history later to maint).
214218

215-
* Update the instruction to use of GGG in the MyFirstContribution
219+
* Update the instructions for using GGG in the MyFirstContribution
216220
document to say that a GitHub PR could be made against `git/git`
217221
instead of `gitgitgadget/git`.
218222
(merge 37001cdbc4 ds/doc-ggg-pr-fork-clarify later to maint).
219223

220224
* Makefile tried to run multiple "cargo build" which would not work
221-
very well; serialize their execution to work it around.
225+
very well; serialize their execution to work around this problem.
222226
(merge 0eeacde50e da/cargo-serialize later to maint).
223227

224228
* "git repack --path-walk" lost objects in some corner cases, which
@@ -294,12 +298,12 @@ including security updates, are included in this release.
294298
updated.
295299
(merge 54a60e5b38 kh/you-still-use-whatchanged-fix later to maint).
296300

297-
* Clang-format update to let our control macros formatted the way we
301+
* Clang-format update to let our control macros be formatted the way we
298302
had them traditionally, e.g., "for_each_string_list_item()" without
299303
space before the parentheses.
300304
(merge 3721541d35 jt/clang-format-foreach-wo-space-before-parenthesis later to maint).
301305

302-
* A few places where an size_t value was cast to curl_off_t without
306+
* A few places where a size_t value was cast to curl_off_t without
303307
checking has been updated to use the existing helper function.
304308
(merge ecc5749578 js/curl-off-t-fixes later to maint).
305309

@@ -329,6 +333,19 @@ including security updates, are included in this release.
329333
you would get from "git format-patch --notes=..." for a singleton
330334
patch.
331335

336+
* The code in "git add -p" and friends to iterate over hunks was
337+
riddled with bugs, which has been corrected.
338+
339+
* A few more things that patch authors can do to help maintainer to
340+
keep track of their topics better.
341+
(merge 1a41698841 tb/doc-submitting-patches later to maint).
342+
343+
* An earlier addition to "git diff --no-index A B" to limit the
344+
output with pathspec after the two directories misbehaved when
345+
these directories were given with a trailing slash, which has been
346+
corrected.
347+
(merge c0bec06cfe jk/diff-no-index-with-pathspec-fix later to maint).
348+
332349
* Other code cleanup, docfix, build fix, etc.
333350
(merge 823d537fa7 kh/doc-git-log-markup-fix later to maint).
334351
(merge cf7efa4f33 rj/t6137-cygwin-fix later to maint).

SubmittingPatches.adoc

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -579,14 +579,27 @@ line via `git format-patch --notes`.
579579
[[the-topic-summary]]
580580
*This is EXPERIMENTAL*.
581581

582-
When sending a topic, you can propose a one-paragraph summary that
583-
should appear in the "What's cooking" report when it is picked up to
584-
explain the topic. If you choose to do so, please write a 2-5 line
585-
paragraph that will fit well in our release notes (see many bulleted
586-
entries in the Documentation/RelNotes/* files for examples), and make
587-
it the first paragraph of the cover letter. For a single-patch
588-
series, use the space between the three-dash line and the diffstat, as
589-
described earlier.
582+
When sending a topic, you can optionally propose a topic name and/or a
583+
one-paragraph summary that should appear in the "What's cooking"
584+
report when it is picked up to explain the topic. If you choose to do
585+
so, please write a 2-5 line paragraph that will fit well in our
586+
release notes (see many bulleted entries in the
587+
Documentation/RelNotes/* files for examples), and make it the first
588+
(or second, if including a suggested topic name) paragraph of the
589+
cover letter. If suggesting a topic name, use the format
590+
"XX/your-topic-name", where "XX" is a stand-in for the primary
591+
author's initials, and "your-topic-name" is a brief, dash-delimited
592+
description of what your topic does. For a single-patch series, use
593+
the space between the three-dash line and the diffstat, as described
594+
earlier.
595+
596+
[[multi-series-efforts]]
597+
If your patch series is part of a larger effort spanning multiple
598+
patch series, briefly describe the broader goal, and state where the
599+
current series fits into that goal. If you are suggesting a topic
600+
name as in <<the-topic-summary, section above>>, consider
601+
"XX/the-broader-goal-part-one", "XX/the-broader-goal-part-two", and so
602+
on.
590603

591604
[[attachment]]
592605
Do not attach the patch as a MIME attachment, compressed or not.

SubmittingPatches.html

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,14 +1200,27 @@ <h4 id="_format_patch_and_send_email"><code>format-patch</code> and <code>send-e
12001200
<p><strong>This is EXPERIMENTAL</strong>.</p>
12011201
</div>
12021202
<div class="paragraph">
1203-
<p>When sending a topic, you can propose a one-paragraph summary that
1204-
should appear in the "What&#8217;s cooking" report when it is picked up to
1205-
explain the topic. If you choose to do so, please write a 2-5 line
1206-
paragraph that will fit well in our release notes (see many bulleted
1207-
entries in the Documentation/RelNotes/* files for examples), and make
1208-
it the first paragraph of the cover letter. For a single-patch
1209-
series, use the space between the three-dash line and the diffstat, as
1210-
described earlier.</p>
1203+
<p>When sending a topic, you can optionally propose a topic name and/or a
1204+
one-paragraph summary that should appear in the "What&#8217;s cooking"
1205+
report when it is picked up to explain the topic. If you choose to do
1206+
so, please write a 2-5 line paragraph that will fit well in our
1207+
release notes (see many bulleted entries in the
1208+
Documentation/RelNotes/* files for examples), and make it the first
1209+
(or second, if including a suggested topic name) paragraph of the
1210+
cover letter. If suggesting a topic name, use the format
1211+
"XX/your-topic-name", where "XX" is a stand-in for the primary
1212+
author&#8217;s initials, and "your-topic-name" is a brief, dash-delimited
1213+
description of what your topic does. For a single-patch series, use
1214+
the space between the three-dash line and the diffstat, as described
1215+
earlier.</p>
1216+
</div>
1217+
<div id="multi-series-efforts" class="paragraph">
1218+
<p>If your patch series is part of a larger effort spanning multiple
1219+
patch series, briefly describe the broader goal, and state where the
1220+
current series fits into that goal. If you are suggesting a topic
1221+
name as in <a href="#the-topic-summary">section above</a>, consider
1222+
"XX/the-broader-goal-part-one", "XX/the-broader-goal-part-two", and so
1223+
on.</p>
12111224
</div>
12121225
<div id="attachment" class="paragraph">
12131226
<p>Do not attach the patch as a MIME attachment, compressed or not.
@@ -1592,7 +1605,7 @@ <h3 id="_gnus">Gnus</h3>
15921605
</div>
15931606
<div id="footer">
15941607
<div id="footer-text">
1595-
Last updated 2025-08-17 17:22:00 -0700
1608+
Last updated 2025-10-20 13:23:01 -0700
15961609
</div>
15971610
</div>
15981611
</body>

git-add.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,10 @@ patch::
342342
d - do not stage this hunk or any of the later hunks in the file
343343
g - select a hunk to go to
344344
/ - search for a hunk matching the given regex
345-
j - leave this hunk undecided, see next undecided hunk
346-
J - leave this hunk undecided, see next hunk
347-
k - leave this hunk undecided, see previous undecided hunk
348-
K - leave this hunk undecided, see previous hunk
345+
j - go to the next undecided hunk, roll over at the bottom
346+
J - go to the next hunk, roll over at the bottom
347+
k - go to the previous undecided hunk, roll over at the top
348+
K - go to the previous hunk, roll over at the top
349349
s - split the current hunk into smaller hunks
350350
e - manually edit the current hunk
351351
p - print the current hunk

git-add.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -872,10 +872,10 @@ <h2 id="_interactive_mode">INTERACTIVE MODE</h2>
872872
d - do not stage this hunk or any of the later hunks in the file
873873
g - select a hunk to go to
874874
/ - search for a hunk matching the given regex
875-
j - leave this hunk undecided, see next undecided hunk
876-
J - leave this hunk undecided, see next hunk
877-
k - leave this hunk undecided, see previous undecided hunk
878-
K - leave this hunk undecided, see previous hunk
875+
j - go to the next undecided hunk, roll over at the bottom
876+
J - go to the next hunk, roll over at the bottom
877+
k - go to the previous undecided hunk, roll over at the top
878+
K - go to the previous hunk, roll over at the top
879879
s - split the current hunk into smaller hunks
880880
e - manually edit the current hunk
881881
p - print the current hunk
@@ -1045,7 +1045,7 @@ <h2 id="_git">GIT</h2>
10451045
</div>
10461046
<div id="footer">
10471047
<div id="footer-text">
1048-
Last updated 2025-09-12 12:13:52 -0700
1048+
Last updated 2025-10-20 13:22:58 -0700
10491049
</div>
10501050
</div>
10511051
</body>

0 commit comments

Comments
 (0)