Skip to content

Commit 3ecdd21

Browse files
committed
Autogenerated HTML docs for v2.49.0-rc2
1 parent 6076a3f commit 3ecdd21

35 files changed

+112
-108
lines changed

MyFirstContribution.adoc

+12-12
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This tutorial aims to summarize the following documents, but the reader may find
2121
useful additional context:
2222

2323
- `Documentation/SubmittingPatches`
24-
- `Documentation/howto/new-command.txt`
24+
- `Documentation/howto/new-command.adoc`
2525

2626
[[getting-help]]
2727
=== Getting Help
@@ -331,7 +331,7 @@ function body:
331331
apply standard precedence rules. `git_config_get_string_tmp()` will look up
332332
a specific key ("user.name") and give you the value. There are a number of
333333
single-key lookup functions like this one; you can see them all (and more info
334-
about how to use `git_config()`) in `Documentation/technical/api-config.txt`.
334+
about how to use `git_config()`) in `Documentation/technical/api-config.adoc`.
335335

336336
You should see that the name printed matches the one you see when you run:
337337

@@ -461,10 +461,10 @@ $ ./bin-wrappers/git help psuh
461461

462462
Your new command is undocumented! Let's fix that.
463463

464-
Take a look at `Documentation/git-*.txt`. These are the manpages for the
464+
Take a look at `Documentation/git-*.adoc`. These are the manpages for the
465465
subcommands that Git knows about. You can open these up and take a look to get
466466
acquainted with the format, but then go ahead and make a new file
467-
`Documentation/git-psuh.txt`. Like with most of the documentation in the Git
467+
`Documentation/git-psuh.adoc`. Like with most of the documentation in the Git
468468
project, help pages are written with AsciiDoc (see CodingGuidelines, "Writing
469469
Documentation" section). Use the following template to fill out your own
470470
manpage:
@@ -543,7 +543,7 @@ Try and run `./bin-wrappers/git psuh -h`. Your command should crash at the end.
543543
That's because `-h` is a special case which your command should handle by
544544
printing usage.
545545

546-
Take a look at `Documentation/technical/api-parse-options.txt`. This is a handy
546+
Take a look at `Documentation/technical/api-parse-options.adoc`. This is a handy
547547
tool for pulling out options you need to be able to handle, and it takes a
548548
usage string.
549549

@@ -1088,14 +1088,14 @@ This gives reviewers a summary of what they're in for when reviewing your topic.
10881088
The one generated for `psuh` from the sample implementation looks like this:
10891089

10901090
----
1091-
Documentation/git-psuh.txt | 40 +++++++++++++++++++++
1092-
Makefile | 1 +
1093-
builtin.h | 1 +
1094-
builtin/psuh.c | 73 ++++++++++++++++++++++++++++++++++++++
1095-
git.c | 1 +
1096-
t/t9999-psuh-tutorial.sh | 12 +++++++
1091+
Documentation/git-psuh.adoc | 40 +++++++++++++++++++++
1092+
Makefile | 1 +
1093+
builtin.h | 1 +
1094+
builtin/psuh.c | 73 ++++++++++++++++++++++++++++++++++++++
1095+
git.c | 1 +
1096+
t/t9999-psuh-tutorial.sh | 12 +++++++
10971097
6 files changed, 128 insertions(+)
1098-
create mode 100644 Documentation/git-psuh.txt
1098+
create mode 100644 Documentation/git-psuh.adoc
10991099
create mode 100644 builtin/psuh.c
11001100
create mode 100755 t/t9999-psuh-tutorial.sh
11011101
----

MyFirstContribution.html

+13-13
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ <h3 id="related-reading"><a class="anchor" href="#related-reading"></a>Related R
470470
<p><code>Documentation/SubmittingPatches</code></p>
471471
</li>
472472
<li>
473-
<p><code>Documentation/howto/new-command.txt</code></p>
473+
<p><code>Documentation/howto/new-command.adoc</code></p>
474474
</li>
475475
</ul>
476476
</div>
@@ -870,7 +870,7 @@ <h3 id="implementation"><a class="anchor" href="#implementation"></a>Implementat
870870
apply standard precedence rules. <code>git_config_get_string_tmp</code>() will look up
871871
a specific key ("user.name") and give you the value. There are a number of
872872
single-key lookup functions like this one; you can see them all (and more info
873-
about how to use <code>git_config</code>()) in <code>Documentation/technical/api-config.txt</code>.</p>
873+
about how to use <code>git_config</code>()) in <code>Documentation/technical/api-config.adoc</code>.</p>
874874
</div>
875875
<div class="paragraph">
876876
<p>You should see that the name printed matches the one you see when you run:</p>
@@ -1041,10 +1041,10 @@ <h3 id="add-documentation"><a class="anchor" href="#add-documentation"></a>Addin
10411041
<p>Your new command is undocumented! Let&#8217;s fix that.</p>
10421042
</div>
10431043
<div class="paragraph">
1044-
<p>Take a look at <code>Documentation/git-</code>*.<code>txt</code>. These are the manpages for the
1044+
<p>Take a look at <code>Documentation/git-</code>*.<code>adoc</code>. These are the manpages for the
10451045
subcommands that Git knows about. You can open these up and take a look to get
10461046
acquainted with the format, but then go ahead and make a new file
1047-
<code>Documentation/git-psuh.txt</code>. Like with most of the documentation in the Git
1047+
<code>Documentation/git-psuh.adoc</code>. Like with most of the documentation in the Git
10481048
project, help pages are written with AsciiDoc (see CodingGuidelines, "Writing
10491049
Documentation" section). Use the following template to fill out your own
10501050
manpage:</p>
@@ -1142,7 +1142,7 @@ <h3 id="add-usage"><a class="anchor" href="#add-usage"></a>Adding Usage Text</h3
11421142
printing usage.</p>
11431143
</div>
11441144
<div class="paragraph">
1145-
<p>Take a look at <code>Documentation/technical/api-parse-options.txt</code>. This is a handy
1145+
<p>Take a look at <code>Documentation/technical/api-parse-options.adoc</code>. This is a handy
11461146
tool for pulling out options you need to be able to handle, and it takes a
11471147
usage string.</p>
11481148
</div>
@@ -1847,14 +1847,14 @@ <h3 id="preparing-cover-letter"><a class="anchor" href="#preparing-cover-letter"
18471847
</div>
18481848
<div class="listingblock">
18491849
<div class="content">
1850-
<pre> Documentation/git-psuh.txt | 40 +++++++++++++++++++++
1851-
Makefile | 1 +
1852-
builtin.h | 1 +
1853-
builtin/psuh.c | 73 ++++++++++++++++++++++++++++++++++++++
1854-
git.c | 1 +
1855-
t/t9999-psuh-tutorial.sh | 12 +++++++
1850+
<pre> Documentation/git-psuh.adoc | 40 +++++++++++++++++++++
1851+
Makefile | 1 +
1852+
builtin.h | 1 +
1853+
builtin/psuh.c | 73 ++++++++++++++++++++++++++++++++++++++
1854+
git.c | 1 +
1855+
t/t9999-psuh-tutorial.sh | 12 +++++++
18561856
6 files changed, 128 insertions(+)
1857-
create mode 100644 Documentation/git-psuh.txt
1857+
create mode 100644 Documentation/git-psuh.adoc
18581858
create mode 100644 builtin/psuh.c
18591859
create mode 100755 t/t9999-psuh-tutorial.sh</pre>
18601860
</div>
@@ -2239,7 +2239,7 @@ <h3 id="after-approval"><a class="anchor" href="#after-approval"></a>After Revie
22392239
</div>
22402240
<div id="footer">
22412241
<div id="footer-text">
2242-
Last updated 2025-02-14 21:38:14 -0800
2242+
Last updated 2025-03-10 09:41:59 -0700
22432243
</div>
22442244
</div>
22452245
</body>

MyFirstObjectWalk.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ revision walk is used for operations like `git log`.
1515

1616
=== Related Reading
1717

18-
- `Documentation/user-manual.txt` under "Hacking Git" contains some coverage of
18+
- `Documentation/user-manual.adoc` under "Hacking Git" contains some coverage of
1919
the revision walker in its various incarnations.
2020
- `revision.h`
2121
- https://eagain.net/articles/git-for-computer-scientists/[Git for Computer Scientists]
@@ -112,7 +112,7 @@ $ GIT_TRACE=1 ./bin-wrappers/git walken
112112
----
113113

114114
NOTE: For a more exhaustive overview of the new command process, take a look at
115-
`Documentation/MyFirstContribution.txt`.
115+
`Documentation/MyFirstContribution.adoc`.
116116

117117
NOTE: A reference implementation can be found at
118118
https://github.com/nasamuffin/git/tree/revwalk.
@@ -132,7 +132,7 @@ used to track the allocated size of the list.
132132
Per entry, we find:
133133

134134
`item` is the object provided upon which to base the object walk. Items in Git
135-
can be blobs, trees, commits, or tags. (See `Documentation/gittutorial-2.txt`.)
135+
can be blobs, trees, commits, or tags. (See `Documentation/gittutorial-2.adoc`.)
136136

137137
`name` is the object ID (OID) of the object - a hex string you may be familiar
138138
with from using Git to organize your source in the past. Check the tutorial
@@ -141,7 +141,7 @@ from.
141141

142142
`whence` indicates some information about what to do with the parents of the
143143
specified object. We'll explore this flag more later on; take a look at
144-
`Documentation/revisions.txt` to get an idea of what could set the `whence`
144+
`Documentation/revisions.adoc` to get an idea of what could set the `whence`
145145
value.
146146

147147
`flags` are used to hint the beginning of the revision walk and are the first
@@ -153,7 +153,7 @@ can be used during the walk, as well.
153153

154154
This one is quite a bit longer, and many fields are only used during the walk
155155
by `revision.c` - not configuration options. Most of the configurable flags in
156-
`struct rev_info` have a mirror in `Documentation/rev-list-options.txt`. It's a
156+
`struct rev_info` have a mirror in `Documentation/rev-list-options.adoc`. It's a
157157
good idea to take some time and read through that document.
158158

159159
== Basic Commit Walk
@@ -710,7 +710,7 @@ objects grows along with the Git project.
710710
=== Adding a Filter
711711

712712
There are a handful of filters that we can apply to the object walk laid out in
713-
`Documentation/rev-list-options.txt`. These filters are typically useful for
713+
`Documentation/rev-list-options.adoc`. These filters are typically useful for
714714
operations such as creating packfiles or performing a partial clone. They are
715715
defined in `list-objects-filter-options.h`. For the purposes of this tutorial we
716716
will use the "tree:1" filter, which causes the walk to omit all trees and blobs

MyFirstObjectWalk.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ <h3 id="_related_reading">Related Reading</h3>
465465
<div class="ulist">
466466
<ul>
467467
<li>
468-
<p><code>Documentation/user-manual.txt</code> under "Hacking Git" contains some coverage of
468+
<p><code>Documentation/user-manual.adoc</code> under "Hacking Git" contains some coverage of
469469
the revision walker in its various incarnations.</p>
470470
</li>
471471
<li>
@@ -603,7 +603,7 @@ <h2 id="_setting_up">Setting Up</h2>
603603
</td>
604604
<td class="content">
605605
For a more exhaustive overview of the new command process, take a look at
606-
<code>Documentation/MyFirstContribution.txt</code>.
606+
<code>Documentation/MyFirstContribution.adoc</code>.
607607
</td>
608608
</tr>
609609
</table>
@@ -642,7 +642,7 @@ <h3 id="_struct_rev_cmdline_info"><code>struct</code> <code>rev_cmdline_info</co
642642
</div>
643643
<div class="paragraph">
644644
<p><code>item</code> is the object provided upon which to base the object walk. Items in Git
645-
can be blobs, trees, commits, or tags. (See <code>Documentation/gittutorial-2.txt</code>.)</p>
645+
can be blobs, trees, commits, or tags. (See <code>Documentation/gittutorial-2.adoc</code>.)</p>
646646
</div>
647647
<div class="paragraph">
648648
<p><code>name</code> is the object ID (OID) of the object - a hex string you may be familiar
@@ -653,7 +653,7 @@ <h3 id="_struct_rev_cmdline_info"><code>struct</code> <code>rev_cmdline_info</co
653653
<div class="paragraph">
654654
<p><code>whence</code> indicates some information about what to do with the parents of the
655655
specified object. We&#8217;ll explore this flag more later on; take a look at
656-
<code>Documentation/revisions.txt</code> to get an idea of what could set the <code>whence</code>
656+
<code>Documentation/revisions.adoc</code> to get an idea of what could set the <code>whence</code>
657657
value.</p>
658658
</div>
659659
<div class="paragraph">
@@ -668,7 +668,7 @@ <h3 id="_struct_rev_info"><code>struct</code> <code>rev_info</code></h3>
668668
<div class="paragraph">
669669
<p>This one is quite a bit longer, and many fields are only used during the walk
670670
by <code>revision.c</code> - not configuration options. Most of the configurable flags in
671-
<code>struct</code> <code>rev_info</code> have a mirror in <code>Documentation/rev-list-options.txt</code>. It&#8217;s a
671+
<code>struct</code> <code>rev_info</code> have a mirror in <code>Documentation/rev-list-options.adoc</code>. It&#8217;s a
672672
good idea to take some time and read through that document.</p>
673673
</div>
674674
</div>
@@ -1428,7 +1428,7 @@ <h2 id="_basic_object_walk">Basic Object Walk</h2>
14281428
<h3 id="_adding_a_filter_2">Adding a Filter</h3>
14291429
<div class="paragraph">
14301430
<p>There are a handful of filters that we can apply to the object walk laid out in
1431-
<code>Documentation/rev-list-options.txt</code>. These filters are typically useful for
1431+
<code>Documentation/rev-list-options.adoc</code>. These filters are typically useful for
14321432
operations such as creating packfiles or performing a partial clone. They are
14331433
defined in <code>list-objects-filter-options.h</code>. For the purposes of this tutorial we
14341434
will use the "tree:1" filter, which causes the walk to omit all trees and blobs
@@ -1675,7 +1675,7 @@ <h2 id="_wrapping_up">Wrapping Up</h2>
16751675
</div>
16761676
<div id="footer">
16771677
<div id="footer-text">
1678-
Last updated 2025-02-14 21:38:14 -0800
1678+
Last updated 2025-03-10 09:41:59 -0700
16791679
</div>
16801680
</div>
16811681
</body>

SubmittingPatches.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1584,7 +1584,7 @@ <h3 id="_gnus">Gnus</h3>
15841584
</div>
15851585
<div id="footer">
15861586
<div id="footer-text">
1587-
Last updated 2025-03-04 08:35:31 -0800
1587+
Last updated 2025-03-10 09:42:02 -0700
15881588
</div>
15891589
</div>
15901590
</body>

gitattributes.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ If the filter command (a string value) is defined via
513513
`filter.<driver>.process` then Git can process all blobs with a
514514
single filter invocation for the entire life of a single Git
515515
command. This is achieved by using the long-running process protocol
516-
(described in technical/long-running-process-protocol.txt).
516+
(described in Documentation/technical/long-running-process-protocol.adoc).
517517

518518
When Git encounters the first file that needs to be cleaned or smudged,
519519
it starts the filter and performs the handshake. In the handshake, the
@@ -1177,11 +1177,11 @@ integer has a meaningful effect.
11771177

11781178
For example, this line in `.gitattributes` can be used to tell the merge
11791179
machinery to leave much longer (instead of the usual 7-character-long)
1180-
conflict markers when merging the file `Documentation/git-merge.txt`
1180+
conflict markers when merging the file `Documentation/git-merge.adoc`
11811181
results in a conflict.
11821182

11831183
------------------------
1184-
Documentation/git-merge.txt conflict-marker-size=32
1184+
Documentation/git-merge.adoc conflict-marker-size=32
11851185
------------------------
11861186

11871187

gitattributes.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ <h4 id="_long_running_filter_process">Long Running Filter Process</h4>
10701070
<code>filter.</code><em>&lt;driver&gt;</em><code>.process</code> then Git can process all blobs with a
10711071
single filter invocation for the entire life of a single Git
10721072
command. This is achieved by using the long-running process protocol
1073-
(described in technical/long-running-process-protocol.txt).</p>
1073+
(described in Documentation/technical/long-running-process-protocol.adoc).</p>
10741074
</div>
10751075
<div class="paragraph">
10761076
<p>When Git encounters the first file that needs to be cleaned or smudged,
@@ -1882,12 +1882,12 @@ <h4 id="_conflict_marker_size"><code>conflict-marker-size</code></h4>
18821882
<div class="paragraph">
18831883
<p>For example, this line in .<code>gitattributes</code> can be used to tell the merge
18841884
machinery to leave much longer (instead of the usual 7-character-long)
1885-
conflict markers when merging the file <code>Documentation/git-merge.txt</code>
1885+
conflict markers when merging the file <code>Documentation/git-merge.adoc</code>
18861886
results in a conflict.</p>
18871887
</div>
18881888
<div class="listingblock">
18891889
<div class="content">
1890-
<pre>Documentation/git-merge.txt conflict-marker-size=32</pre>
1890+
<pre>Documentation/git-merge.adoc conflict-marker-size=32</pre>
18911891
</div>
18921892
</div>
18931893
</div>
@@ -2125,7 +2125,7 @@ <h2 id="_git">GIT</h2>
21252125
</div>
21262126
<div id="footer">
21272127
<div id="footer-text">
2128-
Last updated 2025-02-21 13:44:53 -0800
2128+
Last updated 2025-03-10 09:41:59 -0700
21292129
</div>
21302130
</div>
21312131
</body>

gitrepository-layout.adoc

+4
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ config.worktree::
152152
working directory in multiple working directory setup (see
153153
linkgit:git-worktree[1]).
154154

155+
ifndef::with-breaking-changes[]
155156
branches::
156157
A deprecated way to store shorthands to be used
157158
to specify a URL to 'git fetch', 'git pull' and 'git push'.
@@ -164,6 +165,7 @@ branches::
164165
"$GIT_COMMON_DIR/branches" will be used instead.
165166
+
166167
Git will stop reading remotes from this directory in Git 3.0.
168+
endif::with-breaking-changes[]
167169

168170
hooks::
169171
Hooks are customization scripts used by various Git
@@ -231,6 +233,7 @@ info/sparse-checkout::
231233
This file stores sparse checkout patterns.
232234
See also: linkgit:git-read-tree[1].
233235

236+
ifndef::with-breaking-changes[]
234237
remotes::
235238
Stores shorthands for URL and default refnames for use
236239
when interacting with remote repositories via 'git fetch',
@@ -241,6 +244,7 @@ remotes::
241244
"$GIT_COMMON_DIR/remotes" will be used instead.
242245
+
243246
Git will stop reading remotes from this directory in Git 3.0.
247+
endif::with-breaking-changes[]
244248

245249
logs::
246250
Records of changes made to refs are stored in this directory.

gitrepository-layout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -932,7 +932,7 @@ <h2 id="_git">GIT</h2>
932932
</div>
933933
<div id="footer">
934934
<div id="footer-text">
935-
Last updated 2025-02-14 21:38:14 -0800
935+
Last updated 2025-03-10 09:41:59 -0700
936936
</div>
937937
</div>
938938
</body>

0 commit comments

Comments
 (0)