blob: 836b3490ccda97f6fb8356b25244365198a8f681 [file] [log] [blame]
Ævar Arnfjörð Bjarmason1e232012022-08-04 18:28:41 +02001gitprotocol-http(5)
2===================
3
4NAME
5----
6gitprotocol-http - Git HTTP-based protocols
7
8
9SYNOPSIS
10--------
11[verse]
12<over-the-wire-protocol>
13
14
15DESCRIPTION
16-----------
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070017
18Git supports two HTTP based transfer protocols. A "dumb" protocol
19which requires only a standard HTTP server on the server end of the
20connection, and a "smart" protocol which requires a Git aware CGI
21(or server module). This document describes both protocols.
22
23As a design feature smart clients can automatically upgrade "dumb"
24protocol URLs to smart URLs. This permits all users to have the
25same published URL, and the peers automatically select the most
26efficient transport available to them.
27
28
29URL Format
30----------
31
32URLs for Git repositories accessed by HTTP use the standard HTTP
33URL syntax documented by RFC 1738, so they are of the form:
34
35 http://<host>:<port>/<path>?<searchpart>
36
Thomas Ackermann586aa782014-01-26 13:57:19 +010037Within this documentation the placeholder `$GIT_URL` will stand for
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070038the http:// repository URL entered by the end-user.
39
Thomas Ackermann586aa782014-01-26 13:57:19 +010040Servers SHOULD handle all requests to locations matching `$GIT_URL`, as
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070041both the "smart" and "dumb" HTTP protocols used by Git operate
42by appending additional path components onto the end of the user
Thomas Ackermann586aa782014-01-26 13:57:19 +010043supplied `$GIT_URL` string.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070044
Elijah Newren859a6d62023-10-08 06:45:08 +000045An example of a dumb client requesting a loose object:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070046
47 $GIT_URL: http://example.com:8080/git/repo.git
48 URL request: http://example.com:8080/git/repo.git/objects/d0/49f6c27a2244e12041955e262a404c7faba355
49
50An example of a smart request to a catch-all gateway:
51
52 $GIT_URL: http://example.com/daemon.cgi?svc=git&q=
53 URL request: http://example.com/daemon.cgi?svc=git&q=/info/refs&service=git-receive-pack
54
55An example of a request to a submodule:
56
57 $GIT_URL: http://example.com/git/repo.git/path/submodule.git
58 URL request: http://example.com/git/repo.git/path/submodule.git/info/refs
59
Thomas Ackermann586aa782014-01-26 13:57:19 +010060Clients MUST strip a trailing `/`, if present, from the user supplied
61`$GIT_URL` string to prevent empty path tokens (`//`) from appearing
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070062in any URL sent to a server. Compatible clients MUST expand
Thomas Ackermann586aa782014-01-26 13:57:19 +010063`$GIT_URL/info/refs` as `foo/info/refs` and not `foo//info/refs`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070064
65
66Authentication
67--------------
68
69Standard HTTP authentication is used if authentication is required
70to access a repository, and MAY be configured and enforced by the
71HTTP server software.
72
73Because Git repositories are accessed by standard path components
74server administrators MAY use directory based permissions within
75their HTTP server to control repository access.
76
Yi EungJun04953bc2014-06-15 04:09:29 +090077Clients SHOULD support Basic authentication as described by RFC 2617.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +070078Servers SHOULD support Basic authentication by relying upon the
79HTTP server placed in front of the Git server software.
80
81Servers SHOULD NOT require HTTP cookies for the purposes of
82authentication or access control.
83
84Clients and servers MAY support other common forms of HTTP based
85authentication, such as Digest authentication.
86
87
88SSL
89---
90
91Clients and servers SHOULD support SSL, particularly to protect
92passwords when relying on Basic HTTP authentication.
93
94
95Session State
96-------------
97
98The Git over HTTP protocol (much like HTTP itself) is stateless
99from the perspective of the HTTP server side. All state MUST be
100retained and managed by the client process. This permits simple
101round-robin load-balancing on the server side, without needing to
102worry about state management.
103
104Clients MUST NOT require state management on the server side in
105order to function correctly.
106
107Servers MUST NOT require HTTP cookies in order to function correctly.
108Clients MAY store and forward HTTP cookies during request processing
109as described by RFC 2616 (HTTP/1.1). Servers SHOULD ignore any
110cookies sent by a client.
111
112
113General Request Processing
114--------------------------
115
116Except where noted, all standard HTTP behavior SHOULD be assumed
117by both client and server. This includes (but is not necessarily
118limited to):
119
Thomas Ackermann586aa782014-01-26 13:57:19 +0100120If there is no repository at `$GIT_URL`, or the resource pointed to by a
121location matching `$GIT_URL` does not exist, the server MUST NOT respond
122with `200 OK` response. A server SHOULD respond with
123`404 Not Found`, `410 Gone`, or any other suitable HTTP status code
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700124which does not imply the resource exists as requested.
125
Thomas Ackermann586aa782014-01-26 13:57:19 +0100126If there is a repository at `$GIT_URL`, but access is not currently
127permitted, the server MUST respond with the `403 Forbidden` HTTP
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700128status code.
129
130Servers SHOULD support both HTTP 1.0 and HTTP 1.1.
131Servers SHOULD support chunked encoding for both request and response
132bodies.
133
134Clients SHOULD support both HTTP 1.0 and HTTP 1.1.
135Clients SHOULD support chunked encoding for both request and response
136bodies.
137
138Servers MAY return ETag and/or Last-Modified headers.
139
140Clients MAY revalidate cached entities by including If-Modified-Since
141and/or If-None-Match request headers.
142
Thomas Ackermann586aa782014-01-26 13:57:19 +0100143Servers MAY return `304 Not Modified` if the relevant headers appear
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700144in the request and the entity has not changed. Clients MUST treat
Thomas Ackermann586aa782014-01-26 13:57:19 +0100145`304 Not Modified` identical to `200 OK` by reusing the cached entity.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700146
147Clients MAY reuse a cached entity without revalidation if the
148Cache-Control and/or Expires header permits caching. Clients and
149servers MUST follow RFC 2616 for cache controls.
150
151
152Discovering References
153----------------------
154
155All HTTP clients MUST begin either a fetch or a push exchange by
156discovering the references available on the remote repository.
157
158Dumb Clients
159~~~~~~~~~~~~
160
161HTTP clients that only support the "dumb" protocol MUST discover
162references by making a request for the special info/refs file of
163the repository.
164
Thomas Ackermann586aa782014-01-26 13:57:19 +0100165Dumb HTTP clients MUST make a `GET` request to `$GIT_URL/info/refs`,
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700166without any search/query parameters.
167
168 C: GET $GIT_URL/info/refs HTTP/1.0
169
170 S: 200 OK
171 S:
172 S: 95dcfa3633004da0049d3d0fa03f80589cbcaf31 refs/heads/maint
173 S: d049f6c27a2244e12041955e262a404c7faba355 refs/heads/master
174 S: 2cb58b79488a98d2721cea644875a8dd0026b115 refs/tags/v1.0
175 S: a3c2e2402b99163d1d59756e5f207ae21cccba4c refs/tags/v1.0^{}
176
177The Content-Type of the returned info/refs entity SHOULD be
Thomas Ackermann586aa782014-01-26 13:57:19 +0100178`text/plain; charset=utf-8`, but MAY be any content type.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700179Clients MUST NOT attempt to validate the returned Content-Type.
180Dumb servers MUST NOT return a return type starting with
Thomas Ackermann586aa782014-01-26 13:57:19 +0100181`application/x-git-`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700182
183Cache-Control headers MAY be returned to disable caching of the
184returned entity.
185
186When examining the response clients SHOULD only examine the HTTP
Thomas Ackermann586aa782014-01-26 13:57:19 +0100187status code. Valid responses are `200 OK`, or `304 Not Modified`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700188
189The returned content is a UNIX formatted text file describing
190each ref and its known value. The file SHOULD be sorted by name
191according to the C locale ordering. The file SHOULD NOT include
Thomas Ackermann586aa782014-01-26 13:57:19 +0100192the default ref named `HEAD`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700193
194 info_refs = *( ref_record )
195 ref_record = any_ref / peeled_ref
196
197 any_ref = obj-id HTAB refname LF
198 peeled_ref = obj-id HTAB refname LF
199 obj-id HTAB refname "^{}" LF
200
201Smart Clients
202~~~~~~~~~~~~~
203
204HTTP clients that support the "smart" protocol (or both the
205"smart" and "dumb" protocols) MUST discover references by making
206a parameterized request for the info/refs file of the repository.
207
208The request MUST contain exactly one query parameter,
Thomas Ackermann586aa782014-01-26 13:57:19 +0100209`service=$servicename`, where `$servicename` MUST be the service
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700210name the client wishes to contact to complete the operation.
211The request MUST NOT contain additional query parameters.
212
213 C: GET $GIT_URL/info/refs?service=git-upload-pack HTTP/1.0
214
Thomas Ackermann586aa782014-01-26 13:57:19 +0100215dumb server reply:
216
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700217 S: 200 OK
218 S:
219 S: 95dcfa3633004da0049d3d0fa03f80589cbcaf31 refs/heads/maint
220 S: d049f6c27a2244e12041955e262a404c7faba355 refs/heads/master
221 S: 2cb58b79488a98d2721cea644875a8dd0026b115 refs/tags/v1.0
222 S: a3c2e2402b99163d1d59756e5f207ae21cccba4c refs/tags/v1.0^{}
223
Thomas Ackermann586aa782014-01-26 13:57:19 +0100224smart server reply:
225
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700226 S: 200 OK
227 S: Content-Type: application/x-git-upload-pack-advertisement
228 S: Cache-Control: no-cache
229 S:
230 S: 001e# service=git-upload-pack\n
Jeff King0aa7a782018-03-03 00:27:08 -0500231 S: 0000
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700232 S: 004895dcfa3633004da0049d3d0fa03f80589cbcaf31 refs/heads/maint\0multi_ack\n
Jiuyang Xie2c31a7a2020-05-21 19:32:38 +0800233 S: 003fd049f6c27a2244e12041955e262a404c7faba355 refs/heads/master\n
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700234 S: 003c2cb58b79488a98d2721cea644875a8dd0026b115 refs/tags/v1.0\n
235 S: 003fa3c2e2402b99163d1d59756e5f207ae21cccba4c refs/tags/v1.0^{}\n
Jeff King0aa7a782018-03-03 00:27:08 -0500236 S: 0000
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700237
Jonathan Tan64646792017-10-16 10:55:32 -0700238The client may send Extra Parameters (see
Ævar Arnfjörð Bjarmason5db92102022-08-04 18:28:36 +0200239linkgit:gitprotocol-pack[5]) as a colon-separated string
Jonathan Tan64646792017-10-16 10:55:32 -0700240in the Git-Protocol HTTP header.
241
Ævar Arnfjörð Bjarmason98e2d9d2021-08-05 03:25:43 +0200242Uses the `--http-backend-info-refs` option to
243linkgit:git-upload-pack[1].
244
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700245Dumb Server Response
246^^^^^^^^^^^^^^^^^^^^
247Dumb servers MUST respond with the dumb server reply format.
248
249See the prior section under dumb clients for a more detailed
250description of the dumb server response.
251
252Smart Server Response
253^^^^^^^^^^^^^^^^^^^^^
254If the server does not recognize the requested service name, or the
255requested service name has been disabled by the server administrator,
Thomas Ackermann586aa782014-01-26 13:57:19 +0100256the server MUST respond with the `403 Forbidden` HTTP status code.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700257
258Otherwise, smart servers MUST respond with the smart server reply
259format for the requested service name.
260
261Cache-Control headers SHOULD be used to disable caching of the
262returned entity.
263
Thomas Ackermann586aa782014-01-26 13:57:19 +0100264The Content-Type MUST be `application/x-$servicename-advertisement`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700265Clients SHOULD fall back to the dumb protocol if another content
266type is returned. When falling back to the dumb protocol clients
Thomas Ackermann586aa782014-01-26 13:57:19 +0100267SHOULD NOT make an additional request to `$GIT_URL/info/refs`, but
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700268instead SHOULD use the response already in hand. Clients MUST NOT
269continue if they do not support the dumb protocol.
270
Thomas Ackermann586aa782014-01-26 13:57:19 +0100271Clients MUST validate the status code is either `200 OK` or
272`304 Not Modified`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700273
274Clients MUST validate the first five bytes of the response entity
Thomas Ackermann586aa782014-01-26 13:57:19 +0100275matches the regex `^[0-9a-f]{4}#`. If this test fails, clients
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700276MUST NOT continue.
277
278Clients MUST parse the entire response as a sequence of pkt-line
279records.
280
Thomas Ackermann586aa782014-01-26 13:57:19 +0100281Clients MUST verify the first pkt-line is `# service=$servicename`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700282Servers MUST set $servicename to be the request parameter value.
283Servers SHOULD include an LF at the end of this line.
284Clients MUST ignore an LF at the end of the line.
285
Thomas Ackermann586aa782014-01-26 13:57:19 +0100286Servers MUST terminate the response with the magic `0000` end
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700287pkt-line marker.
288
289The returned response is a pkt-line stream describing each ref and
290its known value. The stream SHOULD be sorted by name according to
291the C locale ordering. The stream SHOULD include the default ref
Thomas Ackermann586aa782014-01-26 13:57:19 +0100292named `HEAD` as the first ref. The stream MUST include capability
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700293declarations behind a NUL on the first ref.
294
Jonathan Tan64646792017-10-16 10:55:32 -0700295The returned response contains "version 1" if "version=1" was sent as an
296Extra Parameter.
297
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700298 smart_reply = PKT-LINE("# service=$servicename" LF)
Jeff King0aa7a782018-03-03 00:27:08 -0500299 "0000"
Jonathan Tan64646792017-10-16 10:55:32 -0700300 *1("version 1")
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700301 ref_list
302 "0000"
303 ref_list = empty_list / non_empty_list
304
305 empty_list = PKT-LINE(zero-id SP "capabilities^{}" NUL cap-list LF)
306
307 non_empty_list = PKT-LINE(obj-id SP name NUL cap_list LF)
308 *ref_record
309
310 cap-list = capability *(SP capability)
311 capability = 1*(LC_ALPHA / DIGIT / "-" / "_")
312 LC_ALPHA = %x61-7A
313
314 ref_record = any_ref / peeled_ref
315 any_ref = PKT-LINE(obj-id SP name LF)
316 peeled_ref = PKT-LINE(obj-id SP name LF)
317 PKT-LINE(obj-id SP name "^{}" LF
318
Thomas Ackermann586aa782014-01-26 13:57:19 +0100319
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700320Smart Service git-upload-pack
321------------------------------
Thomas Ackermann586aa782014-01-26 13:57:19 +0100322This service reads from the repository pointed to by `$GIT_URL`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700323
324Clients MUST first perform ref discovery with
Thomas Ackermann586aa782014-01-26 13:57:19 +0100325`$GIT_URL/info/refs?service=git-upload-pack`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700326
327 C: POST $GIT_URL/git-upload-pack HTTP/1.0
328 C: Content-Type: application/x-git-upload-pack-request
329 C:
330 C: 0032want 0a53e9ddeaddad63ad106860237bbf53411d11a7\n
331 C: 0032have 441b40d833fdfa93eb2908e52742248faf0ee993\n
332 C: 0000
333
334 S: 200 OK
335 S: Content-Type: application/x-git-upload-pack-result
336 S: Cache-Control: no-cache
337 S:
338 S: ....ACK %s, continue
339 S: ....NAK
340
Masanari Iida7e7cf802013-11-13 00:17:43 +0900341Clients MUST NOT reuse or revalidate a cached response.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700342Servers MUST include sufficient Cache-Control headers
343to prevent caching of the response.
344
345Servers SHOULD support all capabilities defined here.
346
Thomas Ackermann586aa782014-01-26 13:57:19 +0100347Clients MUST send at least one "want" command in the request body.
348Clients MUST NOT reference an id in a "want" command which did not
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700349appear in the response obtained through ref discovery unless the
Fredrik Medley68ee6282015-05-21 22:23:39 +0200350server advertises capability `allow-tip-sha1-in-want` or
351`allow-reachable-sha1-in-want`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700352
353 compute_request = want_list
354 have_list
355 request_end
356 request_end = "0000" / "done"
357
Masaya Suzuki74258762018-07-28 14:16:30 -0700358 want_list = PKT-LINE(want SP cap_list LF)
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700359 *(want_pkt)
360 want_pkt = PKT-LINE(want LF)
361 want = "want" SP id
Masaya Suzuki74258762018-07-28 14:16:30 -0700362 cap_list = capability *(SP capability)
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700363
364 have_list = *PKT-LINE("have" SP id LF)
365
366TODO: Document this further.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700367
368The Negotiation Algorithm
369~~~~~~~~~~~~~~~~~~~~~~~~~
370The computation to select the minimal pack proceeds as follows
Thomas Ackermann586aa782014-01-26 13:57:19 +0100371(C = client, S = server):
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700372
Thomas Ackermann586aa782014-01-26 13:57:19 +0100373'init step:'
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700374
Thomas Ackermann586aa782014-01-26 13:57:19 +0100375C: Use ref discovery to obtain the advertised refs.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700376
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100377C: Place any object seen into set `advertised`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700378
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100379C: Build an empty set, `common`, to hold the objects that are later
Thomas Ackermann586aa782014-01-26 13:57:19 +0100380 determined to be on both ends.
381
Elijah Newrencf6cac22023-10-08 06:45:03 +0000382C: Build a set, `want`, of the objects from `advertised` that the client
Thomas Ackermann586aa782014-01-26 13:57:19 +0100383 wants to fetch, based on what it saw during ref discovery.
384
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100385C: Start a queue, `c_pending`, ordered by commit time (popping newest
Thomas Ackermann586aa782014-01-26 13:57:19 +0100386 first). Add all client refs. When a commit is popped from
387 the queue its parents SHOULD be automatically inserted back.
388 Commits MUST only enter the queue once.
389
390'one compute step:'
391
392C: Send one `$GIT_URL/git-upload-pack` request:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700393
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100394 C: 0032want <want #1>...............................
395 C: 0032want <want #2>...............................
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700396 ....
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100397 C: 0032have <common #1>.............................
398 C: 0032have <common #2>.............................
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700399 ....
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100400 C: 0032have <have #1>...............................
401 C: 0032have <have #2>...............................
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700402 ....
403 C: 0000
404
Thomas Ackermann586aa782014-01-26 13:57:19 +0100405The stream is organized into "commands", with each command
Jason St. John06ab60c2014-05-21 14:52:26 -0400406appearing by itself in a pkt-line. Within a command line,
Thomas Ackermann586aa782014-01-26 13:57:19 +0100407the text leading up to the first space is the command name,
408and the remainder of the line to the first LF is the value.
409Command lines are terminated with an LF as the last byte of
410the pkt-line value.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700411
Thomas Ackermann586aa782014-01-26 13:57:19 +0100412Commands MUST appear in the following order, if they appear
413at all in the request stream:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700414
Thomas Ackermann586aa782014-01-26 13:57:19 +0100415* "want"
416* "have"
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700417
Thomas Ackermann586aa782014-01-26 13:57:19 +0100418The stream is terminated by a pkt-line flush (`0000`).
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700419
Thomas Ackermann586aa782014-01-26 13:57:19 +0100420A single "want" or "have" command MUST have one hex formatted
Martin Ågren5b6422a2020-08-15 18:05:59 +0200421object name as its value. Multiple object names MUST be sent by sending
422multiple commands. Object names MUST be given using the object format
423negotiated through the `object-format` capability (default SHA-1).
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700424
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100425The `have` list is created by popping the first 32 commits
Elijah Newrencf6cac22023-10-08 06:45:03 +0000426from `c_pending`. Fewer can be supplied if `c_pending` empties.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700427
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100428If the client has sent 256 "have" commits and has not yet
429received one of those back from `s_common`, or the client has
430emptied `c_pending` it SHOULD include a "done" command to let
Thomas Ackermann586aa782014-01-26 13:57:19 +0100431the server know it won't proceed:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700432
433 C: 0009done
434
Thomas Ackermann586aa782014-01-26 13:57:19 +0100435S: Parse the git-upload-pack request:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700436
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100437Verify all objects in `want` are directly reachable from refs.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700438
Thomas Ackermann586aa782014-01-26 13:57:19 +0100439The server MAY walk backwards through history or through
440the reflog to permit slightly stale requests.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700441
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100442If no "want" objects are received, send an error:
Thomas Ackermann586aa782014-01-26 13:57:19 +0100443TODO: Define error if no "want" lines are requested.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700444
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100445If any "want" object is not reachable, send an error:
Thomas Ackermann586aa782014-01-26 13:57:19 +0100446TODO: Define error if an invalid "want" is requested.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700447
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100448Create an empty list, `s_common`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700449
Thomas Ackermann586aa782014-01-26 13:57:19 +0100450If "have" was sent:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700451
Thomas Ackermann586aa782014-01-26 13:57:19 +0100452Loop through the objects in the order supplied by the client.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700453
Thomas Ackermann586aa782014-01-26 13:57:19 +0100454For each object, if the server has the object reachable from
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100455a ref, add it to `s_common`. If a commit is added to `s_common`,
456do not add any ancestors, even if they also appear in `have`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700457
Thomas Ackermann586aa782014-01-26 13:57:19 +0100458S: Send the git-upload-pack response:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700459
Thomas Ackermann586aa782014-01-26 13:57:19 +0100460If the server has found a closed set of objects to pack or the
461request ends with "done", it replies with the pack.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700462TODO: Document the pack based response
Thomas Ackermann586aa782014-01-26 13:57:19 +0100463
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700464 S: PACK...
465
Thomas Ackermann586aa782014-01-26 13:57:19 +0100466The returned stream is the side-band-64k protocol supported
467by the git-upload-pack service, and the pack is embedded into
468stream 1. Progress messages from the server side MAY appear
469in stream 2.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700470
Thomas Ackermann586aa782014-01-26 13:57:19 +0100471Here a "closed set of objects" is defined to have at least
Thomas Ackermann9c96c7f2014-01-26 13:56:17 +0100472one path from every "want" to at least one "common" object.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700473
Thomas Ackermann586aa782014-01-26 13:57:19 +0100474If the server needs more information, it replies with a
475status continue response:
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700476TODO: Document the non-pack response
477
Thomas Ackermann586aa782014-01-26 13:57:19 +0100478C: Parse the upload-pack response:
479 TODO: Document parsing response
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700480
Thomas Ackermann586aa782014-01-26 13:57:19 +0100481'Do another compute step.'
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700482
483
484Smart Service git-receive-pack
485------------------------------
Thomas Ackermann586aa782014-01-26 13:57:19 +0100486This service reads from the repository pointed to by `$GIT_URL`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700487
488Clients MUST first perform ref discovery with
Thomas Ackermann586aa782014-01-26 13:57:19 +0100489`$GIT_URL/info/refs?service=git-receive-pack`.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700490
491 C: POST $GIT_URL/git-receive-pack HTTP/1.0
492 C: Content-Type: application/x-git-receive-pack-request
493 C:
494 C: ....0a53e9ddeaddad63ad106860237bbf53411d11a7 441b40d833fdfa93eb2908e52742248faf0ee993 refs/heads/maint\0 report-status
495 C: 0000
496 C: PACK....
497
498 S: 200 OK
499 S: Content-Type: application/x-git-receive-pack-result
500 S: Cache-Control: no-cache
501 S:
502 S: ....
503
Masanari Iida7e7cf802013-11-13 00:17:43 +0900504Clients MUST NOT reuse or revalidate a cached response.
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700505Servers MUST include sufficient Cache-Control headers
506to prevent caching of the response.
507
508Servers SHOULD support all capabilities defined here.
509
510Clients MUST send at least one command in the request body.
511Within the command portion of the request body clients SHOULD send
512the id obtained through ref discovery as old_id.
513
514 update_request = command_list
515 "PACK" <binary data>
516
517 command_list = PKT-LINE(command NUL cap_list LF)
518 *(command_pkt)
519 command_pkt = PKT-LINE(command LF)
520 cap_list = *(SP capability) SP
521
522 command = create / delete / update
523 create = zero-id SP new_id SP name
524 delete = old_id SP zero-id SP name
525 update = old_id SP new_id SP name
526
527TODO: Document this further.
528
Ævar Arnfjörð Bjarmason1e232012022-08-04 18:28:41 +0200529REFERENCES
Shawn O. Pearce4c6fffe2013-08-21 20:45:13 +0700530----------
531
Josh Sorefd05b08c2023-11-24 03:35:13 +0000532https://www.ietf.org/rfc/rfc1738.txt[RFC 1738: Uniform Resource Locators (URL)]
533https://www.ietf.org/rfc/rfc2616.txt[RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1]
Ævar Arnfjörð Bjarmason1e232012022-08-04 18:28:41 +0200534
535SEE ALSO
536--------
537
Ævar Arnfjörð Bjarmason5db92102022-08-04 18:28:36 +0200538linkgit:gitprotocol-pack[5]
539linkgit:gitprotocol-capabilities[5]
Ævar Arnfjörð Bjarmason1e232012022-08-04 18:28:41 +0200540
541GIT
542---
543Part of the linkgit:git[1] suite