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