Skip to content

Commit 300c926

Browse files
committed
Autogenerated HTML docs for v2.49.0-33-g66b90
1 parent b99fb61 commit 300c926

28 files changed

+1948
-44
lines changed

MyFirstContribution.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ But as we drill down, we can find that `status_init_config()` wraps a call
367367
to `git_config()`. Let's modify the code we wrote in the previous commit.
368368

369369
Be sure to include the header to allow you to use `struct wt_status`:
370+
370371
----
371372
#include "wt-status.h"
372373
----

MyFirstObjectWalk.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ static void final_rev_info_setup(struct rev_info *rev)
287287
====
288288
Instead of using the shorthand `add_head_to_pending()`, you could do
289289
something like this:
290+
290291
----
291292
struct setup_revision_opt opt;
292293
@@ -295,6 +296,7 @@ something like this:
295296
opt.revarg_opt = REVARG_COMMITTISH;
296297
setup_revisions(argc, argv, rev, &opt);
297298
----
299+
298300
Using a `setup_revision_opt` gives you finer control over your walk's starting
299301
point.
300302
====

RelNotes/2.50.0.adoc

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
Git v2.50 Release Notes
2+
=======================
3+
4+
UI, Workflows & Features
5+
------------------------
6+
7+
* A post-processing filter for "diff --raw" output has been
8+
introduced.
9+
10+
11+
Performance, Internal Implementation, Development Support etc.
12+
--------------------------------------------------------------
13+
14+
* A handful of built-in command implementations have been rewritten
15+
to use the repository instance supplied by git.c:run_builtin(), its
16+
caller.
17+
18+
* "git fsck" becomes more careful when checking the refs.
19+
20+
21+
Fixes since v2.49
22+
-----------------
23+
24+
* The refname exclusion logic in the packed-ref backend has been
25+
broken for some time, which confused upload-pack to advertise
26+
different set of refs. This has been corrected.
27+
(merge 10e8a9352b tb/refs-exclude-fixes later to maint).
28+
29+
* The merge-recursive and merge-ort machinery crashed in corner cases
30+
when certain renames are involved.
31+
(merge 3adba40858 en/merge-process-renames-crash-fix later to maint).
32+
33+
* Other code cleanup, docfix, build fix, etc.
34+
(merge 227c4f33a0 ja/doc-block-delimiter-markup-fix later to maint).

ToolsForGit.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ This is adapted from Linux's suggestion in its CodingStyle document:
3434

3535
- To follow the rules in CodingGuidelines, it's useful to put the following in
3636
GIT_CHECKOUT/.dir-locals.el, assuming you use cperl-mode:
37+
3738
----
3839
;; note the first part is useful for C editing, too
3940
((nil . ((indent-tabs-mode . t)

cmds-plumbinginterrogators.adoc

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ linkgit:git-diff-files[1]::
1010
linkgit:git-diff-index[1]::
1111
Compare a tree to the working tree or index.
1212

13+
linkgit:git-diff-pairs[1]::
14+
Compare the content and mode of provided blob pairs.
15+
1316
linkgit:git-diff-tree[1]::
1417
Compares the content and mode of blobs found via two tree objects.
1518

fsck-msgids.adoc

+14
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
`badObjectSha1`::
1717
(ERROR) An object has a bad sha1.
1818

19+
`badPackedRefEntry`::
20+
(ERROR) The "packed-refs" file contains an invalid entry.
21+
22+
`badPackedRefHeader`::
23+
(ERROR) The "packed-refs" file contains an invalid
24+
header.
25+
1926
`badParentSha1`::
2027
(ERROR) A commit object has a bad parent sha1.
2128

@@ -176,6 +183,13 @@
176183
`nullSha1`::
177184
(WARN) Tree contains entries pointing to a null sha1.
178185

186+
`packedRefEntryNotTerminated`::
187+
(ERROR) The "packed-refs" file contains an entry that is
188+
not terminated by a newline.
189+
190+
`packedRefUnsorted`::
191+
(ERROR) The "packed-refs" file is not sorted.
192+
179193
`refMissingNewline`::
180194
(INFO) A loose ref that does not end with newline(LF). As
181195
valid implementations of Git never created such a loose ref

git-bisect.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ $ git bisect old HEAD~10 # the tenth commit from now is marked as old
495495
------------
496496
+
497497
or:
498+
+
498499
------------
499500
$ git bisect start --term-old broken --term-new fixed
500501
$ git bisect fixed

git-bisect.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1052,16 +1052,16 @@ <h2 id="_examples">EXAMPLES</h2>
10521052
<div class="paragraph">
10531053
<p>or:</p>
10541054
</div>
1055-
</li>
1056-
</ul>
1057-
</div>
10581055
<div class="listingblock">
10591056
<div class="content">
10601057
<pre>$ git bisect start --term-old broken --term-new fixed
10611058
$ git bisect fixed
10621059
$ git bisect broken HEAD~10</pre>
10631060
</div>
10641061
</div>
1062+
</li>
1063+
</ul>
1064+
</div>
10651065
<div class="sect2">
10661066
<h3 id="_getting_help">Getting help</h3>
10671067
<div class="paragraph">
@@ -1091,7 +1091,7 @@ <h2 id="_git">GIT</h2>
10911091
</div>
10921092
<div id="footer">
10931093
<div id="footer-text">
1094-
Last updated 2025-02-14 21:38:14 -0800
1094+
Last updated 2025-03-26 16:41:02 +0900
10951095
</div>
10961096
</div>
10971097
</body>

git-cat-file.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,10 @@ of `%(objectsize)` bytes), followed by a newline.
322322

323323
For example, `--batch` without a custom format would produce:
324324

325-
------------
325+
-----------
326326
<oid> SP <type> SP <size> LF
327327
<contents> LF
328-
------------
328+
-----------
329329

330330
Whereas `--batch-check='%(objectname) %(objecttype)'` would produce:
331331

git-check-attr.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,22 @@ EXAMPLES
7676
--------
7777

7878
In the examples, the following '.gitattributes' file is used:
79+
7980
---------------
8081
*.java diff=java -crlf myAttr
8182
NoMyAttr.java !myAttr
8283
README caveat=unspecified
8384
---------------
8485

8586
* Listing a single attribute:
87+
+
8688
---------------
8789
$ git check-attr diff org/example/MyClass.java
8890
org/example/MyClass.java: diff: java
8991
---------------
9092
9193
* Listing multiple attributes for a file:
94+
+
9295
---------------
9396
$ git check-attr crlf diff myAttr -- org/example/MyClass.java
9497
org/example/MyClass.java: crlf: unset
@@ -97,20 +100,23 @@ org/example/MyClass.java: myAttr: set
97100
---------------
98101
99102
* Listing all attributes for a file:
103+
+
100104
---------------
101105
$ git check-attr --all -- org/example/MyClass.java
102106
org/example/MyClass.java: diff: java
103107
org/example/MyClass.java: myAttr: set
104108
---------------
105109
106110
* Listing an attribute for multiple files:
111+
+
107112
---------------
108113
$ git check-attr myAttr -- org/example/MyClass.java org/example/NoMyAttr.java
109114
org/example/MyClass.java: myAttr: set
110115
org/example/NoMyAttr.java: myAttr: unspecified
111116
---------------
112117
113118
* Not all values are equally unambiguous:
119+
+
114120
---------------
115121
$ git check-attr caveat README
116122
README: caveat: unspecified

git-check-attr.html

+8-24
Original file line numberDiff line numberDiff line change
@@ -572,22 +572,15 @@ <h2 id="_examples">EXAMPLES</h2>
572572
<ul>
573573
<li>
574574
<p>Listing a single attribute:</p>
575-
</li>
576-
</ul>
577-
</div>
578575
<div class="listingblock">
579576
<div class="content">
580577
<pre>$ git check-attr diff org/example/MyClass.java
581578
org/example/MyClass.java: diff: java</pre>
582579
</div>
583580
</div>
584-
<div class="ulist">
585-
<ul>
581+
</li>
586582
<li>
587583
<p>Listing multiple attributes for a file:</p>
588-
</li>
589-
</ul>
590-
</div>
591584
<div class="listingblock">
592585
<div class="content">
593586
<pre>$ git check-attr crlf diff myAttr -- org/example/MyClass.java
@@ -596,47 +589,38 @@ <h2 id="_examples">EXAMPLES</h2>
596589
org/example/MyClass.java: myAttr: set</pre>
597590
</div>
598591
</div>
599-
<div class="ulist">
600-
<ul>
592+
</li>
601593
<li>
602594
<p>Listing all attributes for a file:</p>
603-
</li>
604-
</ul>
605-
</div>
606595
<div class="listingblock">
607596
<div class="content">
608597
<pre>$ git check-attr --all -- org/example/MyClass.java
609598
org/example/MyClass.java: diff: java
610599
org/example/MyClass.java: myAttr: set</pre>
611600
</div>
612601
</div>
613-
<div class="ulist">
614-
<ul>
602+
</li>
615603
<li>
616604
<p>Listing an attribute for multiple files:</p>
617-
</li>
618-
</ul>
619-
</div>
620605
<div class="listingblock">
621606
<div class="content">
622607
<pre>$ git check-attr myAttr -- org/example/MyClass.java org/example/NoMyAttr.java
623608
org/example/MyClass.java: myAttr: set
624609
org/example/NoMyAttr.java: myAttr: unspecified</pre>
625610
</div>
626611
</div>
627-
<div class="ulist">
628-
<ul>
612+
</li>
629613
<li>
630614
<p>Not all values are equally unambiguous:</p>
631-
</li>
632-
</ul>
633-
</div>
634615
<div class="listingblock">
635616
<div class="content">
636617
<pre>$ git check-attr caveat README
637618
README: caveat: unspecified</pre>
638619
</div>
639620
</div>
621+
</li>
622+
</ul>
623+
</div>
640624
</div>
641625
</div>
642626
<div class="sect1">
@@ -658,7 +642,7 @@ <h2 id="_git">GIT</h2>
658642
</div>
659643
<div id="footer">
660644
<div id="footer-text">
661-
Last updated 2025-02-14 21:38:14 -0800
645+
Last updated 2025-03-26 16:41:02 +0900
662646
</div>
663647
</div>
664648
</body>

git-column.adoc

+3
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ EXAMPLES
5050
--------
5151

5252
Format data by columns:
53+
+
5354
------------
5455
$ seq 1 24 | git column --mode=column --padding=5
5556
1 4 7 10 13 16 19 22
@@ -58,6 +59,7 @@ $ seq 1 24 | git column --mode=column --padding=5
5859
------------
5960

6061
Format data by rows:
62+
+
6163
------------
6264
$ seq 1 21 | git column --mode=row --padding=5
6365
1 2 3 4 5 6 7
@@ -66,6 +68,7 @@ $ seq 1 21 | git column --mode=row --padding=5
6668
------------
6769

6870
List some tags in a table with unequal column widths:
71+
+
6972
------------
7073
$ git tag --list 'v2.4.*' --column=row,dense
7174
v2.4.0 v2.4.0-rc0 v2.4.0-rc1 v2.4.0-rc2 v2.4.0-rc3

git-column.html

+10-1
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,9 @@ <h2 id="_examples">EXAMPLES</h2>
516516
<div class="paragraph">
517517
<p>Format data by columns:</p>
518518
</div>
519+
<div class="paragraph">
520+
<p>+</p>
521+
</div>
519522
<div class="listingblock">
520523
<div class="content">
521524
<pre>$ seq 1 24 | git column --mode=column --padding=5
@@ -527,6 +530,9 @@ <h2 id="_examples">EXAMPLES</h2>
527530
<div class="paragraph">
528531
<p>Format data by rows:</p>
529532
</div>
533+
<div class="paragraph">
534+
<p>+</p>
535+
</div>
530536
<div class="listingblock">
531537
<div class="content">
532538
<pre>$ seq 1 21 | git column --mode=row --padding=5
@@ -538,6 +544,9 @@ <h2 id="_examples">EXAMPLES</h2>
538544
<div class="paragraph">
539545
<p>List some tags in a table with unequal column widths:</p>
540546
</div>
547+
<div class="paragraph">
548+
<p>+</p>
549+
</div>
541550
<div class="listingblock">
542551
<div class="content">
543552
<pre>$ git tag --list 'v2.4.*' --column=row,dense
@@ -669,7 +678,7 @@ <h2 id="_git">GIT</h2>
669678
</div>
670679
<div id="footer">
671680
<div id="footer-text">
672-
Last updated 2025-02-14 21:38:14 -0800
681+
Last updated 2025-03-26 16:41:02 +0900
673682
</div>
674683
</div>
675684
</body>

git-cvsserver.adoc

+4
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,11 @@ creation in your platform (e.g. mkpasswd in Linux, encrypt in OpenBSD or
125125
pwhash in NetBSD) and paste it in the right location.
126126
127127
Then provide your password via the pserver method, for example:
128+
128129
------
129130
cvs -d:pserver:someuser:somepassword@server:/path/repo.git co <HEAD_name>
130131
------
132+
131133
No special setup is needed for SSH access, other than having Git tools
132134
in the PATH. If you have clients that do not accept the CVS_SERVER
133135
environment variable, you can rename 'git-cvsserver' to `cvs`.
@@ -138,6 +140,7 @@ CVS_SERVER directly in CVSROOT like
138140
------
139141
cvs -d ":ext;CVS_SERVER=git cvsserver:user@server/path/repo.git" co <HEAD_name>
140142
------
143+
141144
This has the advantage that it will be saved in your 'CVS/Root' files and
142145
you don't need to worry about always setting the correct environment
143146
variable. SSH users restricted to 'git-shell' don't need to override the default
@@ -168,6 +171,7 @@ All configuration variables can also be overridden for a specific method of
168171
access. Valid method names are "ext" (for SSH access) and "pserver". The
169172
following example configuration would disable pserver access while still
170173
allowing access over SSH.
174+
171175
------
172176
[gitcvs]
173177
enabled=0

0 commit comments

Comments
 (0)