aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/gitprotocol-pack.txt
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-08-04 18:28:41 +0200
committerJunio C Hamano <gitster@pobox.com>2022-08-04 14:12:24 -0700
commit1e2320161d27684205f55ffa91f7f481d32863d5 (patch)
tree7f7eebfa3203ccc407ede32e0c39c6be93bc2c2f /Documentation/gitprotocol-pack.txt
parent6b6029dd1d347ce2c83a43afc275c5641b514ab4 (diff)
downloadgit-1e2320161d27684205f55ffa91f7f481d32863d5.tar.gz
docs: move http-protocol docs to man section 5
Continue the move of existing Documentation/technical/* protocol and file-format documentation into our main documentation space by moving the http-protocol.txt documentation over. I'm renaming it to "protocol-http" to be consistent with other things in the new gitformat-protocol-* namespace. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gitprotocol-pack.txt')
-rw-r--r--Documentation/gitprotocol-pack.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gitprotocol-pack.txt b/Documentation/gitprotocol-pack.txt
index 93b30b8845..dd4108b7a3 100644
--- a/Documentation/gitprotocol-pack.txt
+++ b/Documentation/gitprotocol-pack.txt
@@ -17,7 +17,7 @@ Git supports transferring data in packfiles over the ssh://, git://, http:// and
file:// transports. There exist two sets of protocols, one for pushing
data from a client to a server and another for fetching data from a
server to a client. The three transports (ssh, git, file) use the same
-protocol to transfer data. http is documented in http-protocol.txt.
+protocol to transfer data. http is documented in linkgit:gitprotocol-http[5].
The processes invoked in the canonical Git implementation are 'upload-pack'
on the server side and 'fetch-pack' on the client side for fetching data;