From: Stefan Beller Date: Tue, 2 Jun 2015 00:02:17 +0000 (-0700) Subject: Documentation/technical/pack-protocol: mention http as possible protocol X-Git-Tag: v2.4.5~3^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=055c7e9fc64cfb1afa8952ce795fcf76514379ca;p=git Documentation/technical/pack-protocol: mention http as possible protocol Signed-off-by: Stefan Beller Signed-off-by: Junio C Hamano --- diff --git a/Documentation/technical/pack-protocol.txt b/Documentation/technical/pack-protocol.txt index 462e20645f..554b640e46 100644 --- a/Documentation/technical/pack-protocol.txt +++ b/Documentation/technical/pack-protocol.txt @@ -1,11 +1,11 @@ Packfile transfer protocols =========================== -Git supports transferring data in packfiles over the ssh://, git:// and +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. All three transports (ssh, git, file) use the same -protocol to transfer data. +server to a client. The three transports (ssh, git, file) use the same +protocol to transfer data. http is documented in http-protocol.txt. 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;