]> git.ipfire.org Git - thirdparty/git.git/commitdiff
doc: *.txt -> *.adoc fixes
authorTodd Zullinger <tmz@pobox.com>
Mon, 3 Mar 2025 20:44:09 +0000 (15:44 -0500)
committerJunio C Hamano <gitster@pobox.com>
Mon, 3 Mar 2025 21:49:21 +0000 (13:49 -0800)
Update a few more instances of Documentation/*.txt files which have been
renamed to *.adoc.

Signed-off-by: Todd Zullinger <tmz@pobox.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/gitattributes.adoc
Documentation/technical/api-simple-ipc.adoc
Documentation/technical/hash-function-transition.adoc

index 7eaca89972566413425efad5e9f0c59012e6a05e..a22d1ef1e15438ff51f43366108e8cce0aa069ef 100644 (file)
@@ -513,7 +513,7 @@ If the filter command (a string value) is defined via
 `filter.<driver>.process` then Git can process all blobs with a
 single filter invocation for the entire life of a single Git
 command. This is achieved by using the long-running process protocol
-(described in technical/long-running-process-protocol.txt).
+(described in Documentation/technical/long-running-process-protocol.adoc).
 
 When Git encounters the first file that needs to be cleaned or smudged,
 it starts the filter and performs the handshake. In the handshake, the
@@ -1177,11 +1177,11 @@ integer has a meaningful effect.
 
 For example, this line in `.gitattributes` can be used to tell the merge
 machinery to leave much longer (instead of the usual 7-character-long)
-conflict markers when merging the file `Documentation/git-merge.txt`
+conflict markers when merging the file `Documentation/git-merge.adoc`
 results in a conflict.
 
 ------------------------
-Documentation/git-merge.txt    conflict-marker-size=32
+Documentation/git-merge.adoc   conflict-marker-size=32
 ------------------------
 
 
index c4fb152b23291c3978db623b5ebe5eaea1385442..972178b042bc992c78765304965e2e5da4aa3914 100644 (file)
@@ -36,7 +36,7 @@ Comparison with sub-process model
 ---------------------------------
 
 The Simple-IPC mechanism differs from the existing `sub-process.c`
-model (Documentation/technical/long-running-process-protocol.txt) and
+model (Documentation/technical/long-running-process-protocol.adoc) and
 used by applications like Git-LFS.  In the LFS-style sub-process model,
 the helper is started by the foreground process, communication happens
 via a pair of file descriptors bound to the stdin/stdout of the
index 7102c7c8f5d66de5574de459a0e1136131a53004..f047fd80cadd1e364bd0cbdc1c8d5c5b58537859 100644 (file)
@@ -394,7 +394,7 @@ inflated again in step 3, for a total of two inflations.
 
 Step 4 is probably necessary for good read-time performance. "git
 pack-objects" on the server optimizes the pack file for good data
-locality (see Documentation/technical/pack-heuristics.txt).
+locality (see Documentation/technical/pack-heuristics.adoc).
 
 Details of this process are likely to change. It will take some
 experimenting to get this to perform well.