Skip to content

Commit 67f5866

Browse files
committed
Autogenerated HTML docs for v2.50.1-524-ge0753
1 parent 235cb69 commit 67f5866

File tree

3 files changed

+37
-3
lines changed

3 files changed

+37
-3
lines changed

RelNotes/2.51.0.adoc

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ UI, Workflows & Features
6161
* "git pull" learned to pay attention to pull.autostash configuration
6262
variable, which overrides rebase/merge.autostash.
6363

64+
* "git for-each-ref" learns "--start-after" option to help
65+
applications that want to page its output.
66+
6467

6568
Performance, Internal Implementation, Development Support etc.
6669
--------------------------------------------------------------
@@ -125,6 +128,11 @@ Performance, Internal Implementation, Development Support etc.
125128
* The reftable unit tests are now ported to the "clar" unit testing
126129
framework.
127130
131+
* Redefine where the multi-pack-index sits in the object subsystem,
132+
which recently was restructured to allow multiple backends that
133+
support a single object source that belongs to one repository. A
134+
midx does span mulitple "object sources".
135+
128136
129137
Fixes since v2.50
130138
-----------------
@@ -252,6 +260,15 @@ including security updates, are included in this release.
252260
core.commentstring is set to 'auto'.
253261
(merge 92b7c7c9f5 ac/auto-comment-char-fix later to maint).
254262

263+
* "git rebase -i" with bogus rebase.instructionFormat configuration
264+
failed to produce the todo file after recording the state files,
265+
leading to confused "git status"; this has been corrected.
266+
(merge ade14bffd7 ow/rebase-verify-insn-fmt-before-initializing-state later to maint).
267+
268+
* A few file descriptors left unclosed upon program completion in a
269+
few test helper programs are now closed.
270+
(merge 0f1b33815b hl/test-helper-fd-close later to maint).
271+
255272
* Other code cleanup, docfix, build fix, etc.
256273
(merge b257adb571 lo/my-first-ow-doc-update later to maint).
257274
(merge 8b34b6a220 ly/sequencer-update-squash-is-fixup-only later to maint).

git-for-each-ref.adoc

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SYNOPSIS
1414
[--points-at=<object>]
1515
[--merged[=<object>]] [--no-merged[=<object>]]
1616
[--contains[=<object>]] [--no-contains[=<object>]]
17-
[--exclude=<pattern> ...]
17+
[--exclude=<pattern> ...] [--start-after=<marker>]
1818

1919
DESCRIPTION
2020
-----------
@@ -108,6 +108,14 @@ TAB %(refname)`.
108108
--include-root-refs::
109109
List root refs (HEAD and pseudorefs) apart from regular refs.
110110

111+
--start-after=<marker>::
112+
Allows paginating the output by skipping references up to and including the
113+
specified marker. When paging, it should be noted that references may be
114+
deleted, modified or added between invocations. Output will only yield those
115+
references which follow the marker lexicographically. Output begins from the
116+
first reference that would come after the marker alphabetically. Cannot be
117+
used with general pattern matching or custom sort options.
118+
111119
FIELD NAMES
112120
-----------
113121

git-for-each-ref.html

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ <h2 id="_synopsis">SYNOPSIS</h2>
458458
[--points-at=&lt;object&gt;]
459459
[--merged[=&lt;object&gt;]] [--no-merged[=&lt;object&gt;]]
460460
[--contains[=&lt;object&gt;]] [--no-contains[=&lt;object&gt;]]
461-
[--exclude=&lt;pattern&gt; &#8230;&#8203;]</pre>
461+
[--exclude=&lt;pattern&gt; &#8230;&#8203;] [--start-after=&lt;marker&gt;]</pre>
462462
</div>
463463
</div>
464464
</div>
@@ -577,6 +577,15 @@ <h2 id="_options">OPTIONS</h2>
577577
<dd>
578578
<p>List root refs (HEAD and pseudorefs) apart from regular refs.</p>
579579
</dd>
580+
<dt class="hdlist1">--start-after=&lt;marker&gt;</dt>
581+
<dd>
582+
<p>Allows paginating the output by skipping references up to and including the
583+
specified marker. When paging, it should be noted that references may be
584+
deleted, modified or added between invocations. Output will only yield those
585+
references which follow the marker lexicographically. Output begins from the
586+
first reference that would come after the marker alphabetically. Cannot be
587+
used with general pattern matching or custom sort options.</p>
588+
</dd>
580589
</dl>
581590
</div>
582591
</div>
@@ -1138,7 +1147,7 @@ <h2 id="_git">GIT</h2>
11381147
</div>
11391148
<div id="footer">
11401149
<div id="footer-text">
1141-
Last updated 2025-06-20 18:10:42 -0700
1150+
Last updated 2025-08-03 22:01:44 -0700
11421151
</div>
11431152
</div>
11441153
</body>

0 commit comments

Comments
 (0)