本站源代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

725 lines
26KB

  1. package packp
  2. /*
  3. A nice way to trace the real data transmitted and received by git, use:
  4. GIT_TRACE_PACKET=true git ls-remote http://github.com/src-d/go-git
  5. GIT_TRACE_PACKET=true git clone http://github.com/src-d/go-git
  6. Here follows a copy of the current protocol specification at the time of
  7. this writing.
  8. (Please notice that most http git servers will add a flush-pkt after the
  9. first pkt-line when using HTTP smart.)
  10. Documentation Common to Pack and Http Protocols
  11. ===============================================
  12. ABNF Notation
  13. -------------
  14. ABNF notation as described by RFC 5234 is used within the protocol documents,
  15. except the following replacement core rules are used:
  16. ----
  17. HEXDIG = DIGIT / "a" / "b" / "c" / "d" / "e" / "f"
  18. ----
  19. We also define the following common rules:
  20. ----
  21. NUL = %x00
  22. zero-id = 40*"0"
  23. obj-id = 40*(HEXDIGIT)
  24. refname = "HEAD"
  25. refname /= "refs/" <see discussion below>
  26. ----
  27. A refname is a hierarchical octet string beginning with "refs/" and
  28. not violating the 'git-check-ref-format' command's validation rules.
  29. More specifically, they:
  30. . They can include slash `/` for hierarchical (directory)
  31. grouping, but no slash-separated component can begin with a
  32. dot `.`.
  33. . They must contain at least one `/`. This enforces the presence of a
  34. category like `heads/`, `tags/` etc. but the actual names are not
  35. restricted.
  36. . They cannot have two consecutive dots `..` anywhere.
  37. . They cannot have ASCII control characters (i.e. bytes whose
  38. values are lower than \040, or \177 `DEL`), space, tilde `~`,
  39. caret `^`, colon `:`, question-mark `?`, asterisk `*`,
  40. or open bracket `[` anywhere.
  41. . They cannot end with a slash `/` or a dot `.`.
  42. . They cannot end with the sequence `.lock`.
  43. . They cannot contain a sequence `@{`.
  44. . They cannot contain a `\\`.
  45. pkt-line Format
  46. ---------------
  47. Much (but not all) of the payload is described around pkt-lines.
  48. A pkt-line is a variable length binary string. The first four bytes
  49. of the line, the pkt-len, indicates the total length of the line,
  50. in hexadecimal. The pkt-len includes the 4 bytes used to contain
  51. the length's hexadecimal representation.
  52. A pkt-line MAY contain binary data, so implementors MUST ensure
  53. pkt-line parsing/formatting routines are 8-bit clean.
  54. A non-binary line SHOULD BE terminated by an LF, which if present
  55. MUST be included in the total length. Receivers MUST treat pkt-lines
  56. with non-binary data the same whether or not they contain the trailing
  57. LF (stripping the LF if present, and not complaining when it is
  58. missing).
  59. The maximum length of a pkt-line's data component is 65516 bytes.
  60. Implementations MUST NOT send pkt-line whose length exceeds 65520
  61. (65516 bytes of payload + 4 bytes of length data).
  62. Implementations SHOULD NOT send an empty pkt-line ("0004").
  63. A pkt-line with a length field of 0 ("0000"), called a flush-pkt,
  64. is a special case and MUST be handled differently than an empty
  65. pkt-line ("0004").
  66. ----
  67. pkt-line = data-pkt / flush-pkt
  68. data-pkt = pkt-len pkt-payload
  69. pkt-len = 4*(HEXDIG)
  70. pkt-payload = (pkt-len - 4)*(OCTET)
  71. flush-pkt = "0000"
  72. ----
  73. Examples (as C-style strings):
  74. ----
  75. pkt-line actual value
  76. ---------------------------------
  77. "0006a\n" "a\n"
  78. "0005a" "a"
  79. "000bfoobar\n" "foobar\n"
  80. "0004" ""
  81. ----
  82. Packfile transfer protocols
  83. ===========================
  84. Git supports transferring data in packfiles over the ssh://, git://, http:// and
  85. file:// transports. There exist two sets of protocols, one for pushing
  86. data from a client to a server and another for fetching data from a
  87. server to a client. The three transports (ssh, git, file) use the same
  88. protocol to transfer data. http is documented in http-protocol.txt.
  89. The processes invoked in the canonical Git implementation are 'upload-pack'
  90. on the server side and 'fetch-pack' on the client side for fetching data;
  91. then 'receive-pack' on the server and 'send-pack' on the client for pushing
  92. data. The protocol functions to have a server tell a client what is
  93. currently on the server, then for the two to negotiate the smallest amount
  94. of data to send in order to fully update one or the other.
  95. pkt-line Format
  96. ---------------
  97. The descriptions below build on the pkt-line format described in
  98. protocol-common.txt. When the grammar indicate `PKT-LINE(...)`, unless
  99. otherwise noted the usual pkt-line LF rules apply: the sender SHOULD
  100. include a LF, but the receiver MUST NOT complain if it is not present.
  101. Transports
  102. ----------
  103. There are three transports over which the packfile protocol is
  104. initiated. The Git transport is a simple, unauthenticated server that
  105. takes the command (almost always 'upload-pack', though Git
  106. servers can be configured to be globally writable, in which 'receive-
  107. pack' initiation is also allowed) with which the client wishes to
  108. communicate and executes it and connects it to the requesting
  109. process.
  110. In the SSH transport, the client just runs the 'upload-pack'
  111. or 'receive-pack' process on the server over the SSH protocol and then
  112. communicates with that invoked process over the SSH connection.
  113. The file:// transport runs the 'upload-pack' or 'receive-pack'
  114. process locally and communicates with it over a pipe.
  115. Git Transport
  116. -------------
  117. The Git transport starts off by sending the command and repository
  118. on the wire using the pkt-line format, followed by a NUL byte and a
  119. hostname parameter, terminated by a NUL byte.
  120. 0032git-upload-pack /project.git\0host=myserver.com\0
  121. --
  122. git-proto-request = request-command SP pathname NUL [ host-parameter NUL ]
  123. request-command = "git-upload-pack" / "git-receive-pack" /
  124. "git-upload-archive" ; case sensitive
  125. pathname = *( %x01-ff ) ; exclude NUL
  126. host-parameter = "host=" hostname [ ":" port ]
  127. --
  128. Only host-parameter is allowed in the git-proto-request. Clients
  129. MUST NOT attempt to send additional parameters. It is used for the
  130. git-daemon name based virtual hosting. See --interpolated-path
  131. option to git daemon, with the %H/%CH format characters.
  132. Basically what the Git client is doing to connect to an 'upload-pack'
  133. process on the server side over the Git protocol is this:
  134. $ echo -e -n \
  135. "0039git-upload-pack /schacon/gitbook.git\0host=example.com\0" |
  136. nc -v example.com 9418
  137. If the server refuses the request for some reasons, it could abort
  138. gracefully with an error message.
  139. ----
  140. error-line = PKT-LINE("ERR" SP explanation-text)
  141. ----
  142. SSH Transport
  143. -------------
  144. Initiating the upload-pack or receive-pack processes over SSH is
  145. executing the binary on the server via SSH remote execution.
  146. It is basically equivalent to running this:
  147. $ ssh git.example.com "git-upload-pack '/project.git'"
  148. For a server to support Git pushing and pulling for a given user over
  149. SSH, that user needs to be able to execute one or both of those
  150. commands via the SSH shell that they are provided on login. On some
  151. systems, that shell access is limited to only being able to run those
  152. two commands, or even just one of them.
  153. In an ssh:// format URI, it's absolute in the URI, so the '/' after
  154. the host name (or port number) is sent as an argument, which is then
  155. read by the remote git-upload-pack exactly as is, so it's effectively
  156. an absolute path in the remote filesystem.
  157. git clone ssh://user@example.com/project.git
  158. |
  159. v
  160. ssh user@example.com "git-upload-pack '/project.git'"
  161. In a "user@host:path" format URI, its relative to the user's home
  162. directory, because the Git client will run:
  163. git clone user@example.com:project.git
  164. |
  165. v
  166. ssh user@example.com "git-upload-pack 'project.git'"
  167. The exception is if a '~' is used, in which case
  168. we execute it without the leading '/'.
  169. ssh://user@example.com/~alice/project.git,
  170. |
  171. v
  172. ssh user@example.com "git-upload-pack '~alice/project.git'"
  173. A few things to remember here:
  174. - The "command name" is spelled with dash (e.g. git-upload-pack), but
  175. this can be overridden by the client;
  176. - The repository path is always quoted with single quotes.
  177. Fetching Data From a Server
  178. ---------------------------
  179. When one Git repository wants to get data that a second repository
  180. has, the first can 'fetch' from the second. This operation determines
  181. what data the server has that the client does not then streams that
  182. data down to the client in packfile format.
  183. Reference Discovery
  184. -------------------
  185. When the client initially connects the server will immediately respond
  186. with a listing of each reference it has (all branches and tags) along
  187. with the object name that each reference currently points to.
  188. $ echo -e -n "0039git-upload-pack /schacon/gitbook.git\0host=example.com\0" |
  189. nc -v example.com 9418
  190. 00887217a7c7e582c46cec22a130adf4b9d7d950fba0 HEAD\0multi_ack thin-pack
  191. side-band side-band-64k ofs-delta shallow no-progress include-tag
  192. 00441d3fcd5ced445d1abc402225c0b8a1299641f497 refs/heads/integration
  193. 003f7217a7c7e582c46cec22a130adf4b9d7d950fba0 refs/heads/master
  194. 003cb88d2441cac0977faf98efc80305012112238d9d refs/tags/v0.9
  195. 003c525128480b96c89e6418b1e40909bf6c5b2d580f refs/tags/v1.0
  196. 003fe92df48743b7bc7d26bcaabfddde0a1e20cae47c refs/tags/v1.0^{}
  197. 0000
  198. The returned response is a pkt-line stream describing each ref and
  199. its current value. The stream MUST be sorted by name according to
  200. the C locale ordering.
  201. If HEAD is a valid ref, HEAD MUST appear as the first advertised
  202. ref. If HEAD is not a valid ref, HEAD MUST NOT appear in the
  203. advertisement list at all, but other refs may still appear.
  204. The stream MUST include capability declarations behind a NUL on the
  205. first ref. The peeled value of a ref (that is "ref^{}") MUST be
  206. immediately after the ref itself, if presented. A conforming server
  207. MUST peel the ref if it's an annotated tag.
  208. ----
  209. advertised-refs = (no-refs / list-of-refs)
  210. *shallow
  211. flush-pkt
  212. no-refs = PKT-LINE(zero-id SP "capabilities^{}"
  213. NUL capability-list)
  214. list-of-refs = first-ref *other-ref
  215. first-ref = PKT-LINE(obj-id SP refname
  216. NUL capability-list)
  217. other-ref = PKT-LINE(other-tip / other-peeled)
  218. other-tip = obj-id SP refname
  219. other-peeled = obj-id SP refname "^{}"
  220. shallow = PKT-LINE("shallow" SP obj-id)
  221. capability-list = capability *(SP capability)
  222. capability = 1*(LC_ALPHA / DIGIT / "-" / "_")
  223. LC_ALPHA = %x61-7A
  224. ----
  225. Server and client MUST use lowercase for obj-id, both MUST treat obj-id
  226. as case-insensitive.
  227. See protocol-capabilities.txt for a list of allowed server capabilities
  228. and descriptions.
  229. Packfile Negotiation
  230. --------------------
  231. After reference and capabilities discovery, the client can decide to
  232. terminate the connection by sending a flush-pkt, telling the server it can
  233. now gracefully terminate, and disconnect, when it does not need any pack
  234. data. This can happen with the ls-remote command, and also can happen when
  235. the client already is up-to-date.
  236. Otherwise, it enters the negotiation phase, where the client and
  237. server determine what the minimal packfile necessary for transport is,
  238. by telling the server what objects it wants, its shallow objects
  239. (if any), and the maximum commit depth it wants (if any). The client
  240. will also send a list of the capabilities it wants to be in effect,
  241. out of what the server said it could do with the first 'want' line.
  242. ----
  243. upload-request = want-list
  244. *shallow-line
  245. *1depth-request
  246. flush-pkt
  247. want-list = first-want
  248. *additional-want
  249. shallow-line = PKT-LINE("shallow" SP obj-id)
  250. depth-request = PKT-LINE("deepen" SP depth) /
  251. PKT-LINE("deepen-since" SP timestamp) /
  252. PKT-LINE("deepen-not" SP ref)
  253. first-want = PKT-LINE("want" SP obj-id SP capability-list)
  254. additional-want = PKT-LINE("want" SP obj-id)
  255. depth = 1*DIGIT
  256. ----
  257. Clients MUST send all the obj-ids it wants from the reference
  258. discovery phase as 'want' lines. Clients MUST send at least one
  259. 'want' command in the request body. Clients MUST NOT mention an
  260. obj-id in a 'want' command which did not appear in the response
  261. obtained through ref discovery.
  262. The client MUST write all obj-ids which it only has shallow copies
  263. of (meaning that it does not have the parents of a commit) as
  264. 'shallow' lines so that the server is aware of the limitations of
  265. the client's history.
  266. The client now sends the maximum commit history depth it wants for
  267. this transaction, which is the number of commits it wants from the
  268. tip of the history, if any, as a 'deepen' line. A depth of 0 is the
  269. same as not making a depth request. The client does not want to receive
  270. any commits beyond this depth, nor does it want objects needed only to
  271. complete those commits. Commits whose parents are not received as a
  272. result are defined as shallow and marked as such in the server. This
  273. information is sent back to the client in the next step.
  274. Once all the 'want's and 'shallow's (and optional 'deepen') are
  275. transferred, clients MUST send a flush-pkt, to tell the server side
  276. that it is done sending the list.
  277. Otherwise, if the client sent a positive depth request, the server
  278. will determine which commits will and will not be shallow and
  279. send this information to the client. If the client did not request
  280. a positive depth, this step is skipped.
  281. ----
  282. shallow-update = *shallow-line
  283. *unshallow-line
  284. flush-pkt
  285. shallow-line = PKT-LINE("shallow" SP obj-id)
  286. unshallow-line = PKT-LINE("unshallow" SP obj-id)
  287. ----
  288. If the client has requested a positive depth, the server will compute
  289. the set of commits which are no deeper than the desired depth. The set
  290. of commits start at the client's wants.
  291. The server writes 'shallow' lines for each
  292. commit whose parents will not be sent as a result. The server writes
  293. an 'unshallow' line for each commit which the client has indicated is
  294. shallow, but is no longer shallow at the currently requested depth
  295. (that is, its parents will now be sent). The server MUST NOT mark
  296. as unshallow anything which the client has not indicated was shallow.
  297. Now the client will send a list of the obj-ids it has using 'have'
  298. lines, so the server can make a packfile that only contains the objects
  299. that the client needs. In multi_ack mode, the canonical implementation
  300. will send up to 32 of these at a time, then will send a flush-pkt. The
  301. canonical implementation will skip ahead and send the next 32 immediately,
  302. so that there is always a block of 32 "in-flight on the wire" at a time.
  303. ----
  304. upload-haves = have-list
  305. compute-end
  306. have-list = *have-line
  307. have-line = PKT-LINE("have" SP obj-id)
  308. compute-end = flush-pkt / PKT-LINE("done")
  309. ----
  310. If the server reads 'have' lines, it then will respond by ACKing any
  311. of the obj-ids the client said it had that the server also has. The
  312. server will ACK obj-ids differently depending on which ack mode is
  313. chosen by the client.
  314. In multi_ack mode:
  315. * the server will respond with 'ACK obj-id continue' for any common
  316. commits.
  317. * once the server has found an acceptable common base commit and is
  318. ready to make a packfile, it will blindly ACK all 'have' obj-ids
  319. back to the client.
  320. * the server will then send a 'NAK' and then wait for another response
  321. from the client - either a 'done' or another list of 'have' lines.
  322. In multi_ack_detailed mode:
  323. * the server will differentiate the ACKs where it is signaling
  324. that it is ready to send data with 'ACK obj-id ready' lines, and
  325. signals the identified common commits with 'ACK obj-id common' lines.
  326. Without either multi_ack or multi_ack_detailed:
  327. * upload-pack sends "ACK obj-id" on the first common object it finds.
  328. After that it says nothing until the client gives it a "done".
  329. * upload-pack sends "NAK" on a flush-pkt if no common object
  330. has been found yet. If one has been found, and thus an ACK
  331. was already sent, it's silent on the flush-pkt.
  332. After the client has gotten enough ACK responses that it can determine
  333. that the server has enough information to send an efficient packfile
  334. (in the canonical implementation, this is determined when it has received
  335. enough ACKs that it can color everything left in the --date-order queue
  336. as common with the server, or the --date-order queue is empty), or the
  337. client determines that it wants to give up (in the canonical implementation,
  338. this is determined when the client sends 256 'have' lines without getting
  339. any of them ACKed by the server - meaning there is nothing in common and
  340. the server should just send all of its objects), then the client will send
  341. a 'done' command. The 'done' command signals to the server that the client
  342. is ready to receive its packfile data.
  343. However, the 256 limit *only* turns on in the canonical client
  344. implementation if we have received at least one "ACK %s continue"
  345. during a prior round. This helps to ensure that at least one common
  346. ancestor is found before we give up entirely.
  347. Once the 'done' line is read from the client, the server will either
  348. send a final 'ACK obj-id' or it will send a 'NAK'. 'obj-id' is the object
  349. name of the last commit determined to be common. The server only sends
  350. ACK after 'done' if there is at least one common base and multi_ack or
  351. multi_ack_detailed is enabled. The server always sends NAK after 'done'
  352. if there is no common base found.
  353. Then the server will start sending its packfile data.
  354. ----
  355. server-response = *ack_multi ack / nak
  356. ack_multi = PKT-LINE("ACK" SP obj-id ack_status)
  357. ack_status = "continue" / "common" / "ready"
  358. ack = PKT-LINE("ACK" SP obj-id)
  359. nak = PKT-LINE("NAK")
  360. ----
  361. A simple clone may look like this (with no 'have' lines):
  362. ----
  363. C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
  364. side-band-64k ofs-delta\n
  365. C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
  366. C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
  367. C: 0032want 7e47fe2bd8d01d481f44d7af0531bd93d3b21c01\n
  368. C: 0032want 74730d410fcb6603ace96f1dc55ea6196122532d\n
  369. C: 0000
  370. C: 0009done\n
  371. S: 0008NAK\n
  372. S: [PACKFILE]
  373. ----
  374. An incremental update (fetch) response might look like this:
  375. ----
  376. C: 0054want 74730d410fcb6603ace96f1dc55ea6196122532d multi_ack \
  377. side-band-64k ofs-delta\n
  378. C: 0032want 7d1665144a3a975c05f1f43902ddaf084e784dbe\n
  379. C: 0032want 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a\n
  380. C: 0000
  381. C: 0032have 7e47fe2bd8d01d481f44d7af0531bd93d3b21c01\n
  382. C: [30 more have lines]
  383. C: 0032have 74730d410fcb6603ace96f1dc55ea6196122532d\n
  384. C: 0000
  385. S: 003aACK 7e47fe2bd8d01d481f44d7af0531bd93d3b21c01 continue\n
  386. S: 003aACK 74730d410fcb6603ace96f1dc55ea6196122532d continue\n
  387. S: 0008NAK\n
  388. C: 0009done\n
  389. S: 0031ACK 74730d410fcb6603ace96f1dc55ea6196122532d\n
  390. S: [PACKFILE]
  391. ----
  392. Packfile Data
  393. -------------
  394. Now that the client and server have finished negotiation about what
  395. the minimal amount of data that needs to be sent to the client is, the server
  396. will construct and send the required data in packfile format.
  397. See pack-format.txt for what the packfile itself actually looks like.
  398. If 'side-band' or 'side-band-64k' capabilities have been specified by
  399. the client, the server will send the packfile data multiplexed.
  400. Each packet starting with the packet-line length of the amount of data
  401. that follows, followed by a single byte specifying the sideband the
  402. following data is coming in on.
  403. In 'side-band' mode, it will send up to 999 data bytes plus 1 control
  404. code, for a total of up to 1000 bytes in a pkt-line. In 'side-band-64k'
  405. mode it will send up to 65519 data bytes plus 1 control code, for a
  406. total of up to 65520 bytes in a pkt-line.
  407. The sideband byte will be a '1', '2' or a '3'. Sideband '1' will contain
  408. packfile data, sideband '2' will be used for progress information that the
  409. client will generally print to stderr and sideband '3' is used for error
  410. information.
  411. If no 'side-band' capability was specified, the server will stream the
  412. entire packfile without multiplexing.
  413. Pushing Data To a Server
  414. ------------------------
  415. Pushing data to a server will invoke the 'receive-pack' process on the
  416. server, which will allow the client to tell it which references it should
  417. update and then send all the data the server will need for those new
  418. references to be complete. Once all the data is received and validated,
  419. the server will then update its references to what the client specified.
  420. Authentication
  421. --------------
  422. The protocol itself contains no authentication mechanisms. That is to be
  423. handled by the transport, such as SSH, before the 'receive-pack' process is
  424. invoked. If 'receive-pack' is configured over the Git transport, those
  425. repositories will be writable by anyone who can access that port (9418) as
  426. that transport is unauthenticated.
  427. Reference Discovery
  428. -------------------
  429. The reference discovery phase is done nearly the same way as it is in the
  430. fetching protocol. Each reference obj-id and name on the server is sent
  431. in packet-line format to the client, followed by a flush-pkt. The only
  432. real difference is that the capability listing is different - the only
  433. possible values are 'report-status', 'delete-refs', 'ofs-delta' and
  434. 'push-options'.
  435. Reference Update Request and Packfile Transfer
  436. ----------------------------------------------
  437. Once the client knows what references the server is at, it can send a
  438. list of reference update requests. For each reference on the server
  439. that it wants to update, it sends a line listing the obj-id currently on
  440. the server, the obj-id the client would like to update it to and the name
  441. of the reference.
  442. This list is followed by a flush-pkt. Then the push options are transmitted
  443. one per packet followed by another flush-pkt. After that the packfile that
  444. should contain all the objects that the server will need to complete the new
  445. references will be sent.
  446. ----
  447. update-request = *shallow ( command-list | push-cert ) [packfile]
  448. shallow = PKT-LINE("shallow" SP obj-id)
  449. command-list = PKT-LINE(command NUL capability-list)
  450. *PKT-LINE(command)
  451. flush-pkt
  452. command = create / delete / update
  453. create = zero-id SP new-id SP name
  454. delete = old-id SP zero-id SP name
  455. update = old-id SP new-id SP name
  456. old-id = obj-id
  457. new-id = obj-id
  458. push-cert = PKT-LINE("push-cert" NUL capability-list LF)
  459. PKT-LINE("certificate version 0.1" LF)
  460. PKT-LINE("pusher" SP ident LF)
  461. PKT-LINE("pushee" SP url LF)
  462. PKT-LINE("nonce" SP nonce LF)
  463. PKT-LINE(LF)
  464. *PKT-LINE(command LF)
  465. *PKT-LINE(gpg-signature-lines LF)
  466. PKT-LINE("push-cert-end" LF)
  467. packfile = "PACK" 28*(OCTET)
  468. ----
  469. If the receiving end does not support delete-refs, the sending end MUST
  470. NOT ask for delete command.
  471. If the receiving end does not support push-cert, the sending end
  472. MUST NOT send a push-cert command. When a push-cert command is
  473. sent, command-list MUST NOT be sent; the commands recorded in the
  474. push certificate is used instead.
  475. The packfile MUST NOT be sent if the only command used is 'delete'.
  476. A packfile MUST be sent if either create or update command is used,
  477. even if the server already has all the necessary objects. In this
  478. case the client MUST send an empty packfile. The only time this
  479. is likely to happen is if the client is creating
  480. a new branch or a tag that points to an existing obj-id.
  481. The server will receive the packfile, unpack it, then validate each
  482. reference that is being updated that it hasn't changed while the request
  483. was being processed (the obj-id is still the same as the old-id), and
  484. it will run any update hooks to make sure that the update is acceptable.
  485. If all of that is fine, the server will then update the references.
  486. Push Certificate
  487. ----------------
  488. A push certificate begins with a set of header lines. After the
  489. header and an empty line, the protocol commands follow, one per
  490. line. Note that the trailing LF in push-cert PKT-LINEs is _not_
  491. optional; it must be present.
  492. Currently, the following header fields are defined:
  493. `pusher` ident::
  494. Identify the GPG key in "Human Readable Name <email@address>"
  495. format.
  496. `pushee` url::
  497. The repository URL (anonymized, if the URL contains
  498. authentication material) the user who ran `git push`
  499. intended to push into.
  500. `nonce` nonce::
  501. The 'nonce' string the receiving repository asked the
  502. pushing user to include in the certificate, to prevent
  503. replay attacks.
  504. The GPG signature lines are a detached signature for the contents
  505. recorded in the push certificate before the signature block begins.
  506. The detached signature is used to certify that the commands were
  507. given by the pusher, who must be the signer.
  508. Report Status
  509. -------------
  510. After receiving the pack data from the sender, the receiver sends a
  511. report if 'report-status' capability is in effect.
  512. It is a short listing of what happened in that update. It will first
  513. list the status of the packfile unpacking as either 'unpack ok' or
  514. 'unpack [error]'. Then it will list the status for each of the references
  515. that it tried to update. Each line is either 'ok [refname]' if the
  516. update was successful, or 'ng [refname] [error]' if the update was not.
  517. ----
  518. report-status = unpack-status
  519. 1*(command-status)
  520. flush-pkt
  521. unpack-status = PKT-LINE("unpack" SP unpack-result)
  522. unpack-result = "ok" / error-msg
  523. command-status = command-ok / command-fail
  524. command-ok = PKT-LINE("ok" SP refname)
  525. command-fail = PKT-LINE("ng" SP refname SP error-msg)
  526. error-msg = 1*(OCTECT) ; where not "ok"
  527. ----
  528. Updates can be unsuccessful for a number of reasons. The reference can have
  529. changed since the reference discovery phase was originally sent, meaning
  530. someone pushed in the meantime. The reference being pushed could be a
  531. non-fast-forward reference and the update hooks or configuration could be
  532. set to not allow that, etc. Also, some references can be updated while others
  533. can be rejected.
  534. An example client/server communication might look like this:
  535. ----
  536. S: 007c74730d410fcb6603ace96f1dc55ea6196122532d refs/heads/local\0report-status delete-refs ofs-delta\n
  537. S: 003e7d1665144a3a975c05f1f43902ddaf084e784dbe refs/heads/debug\n
  538. S: 003f74730d410fcb6603ace96f1dc55ea6196122532d refs/heads/master\n
  539. S: 003f74730d410fcb6603ace96f1dc55ea6196122532d refs/heads/team\n
  540. S: 0000
  541. C: 003e7d1665144a3a975c05f1f43902ddaf084e784dbe 74730d410fcb6603ace96f1dc55ea6196122532d refs/heads/debug\n
  542. C: 003e74730d410fcb6603ace96f1dc55ea6196122532d 5a3f6be755bbb7deae50065988cbfa1ffa9ab68a refs/heads/master\n
  543. C: 0000
  544. C: [PACKDATA]
  545. S: 000eunpack ok\n
  546. S: 0018ok refs/heads/debug\n
  547. S: 002ang refs/heads/master non-fast-forward\n
  548. ----
  549. */
上海开阖软件有限公司 沪ICP备12045867号-1