6 gitprotocol-common - Things common to various protocols
11 <over-the-wire-protocol>
16 This document sets defines things common to various over-the-wire
17 protocols and file formats used in Git.
22 ABNF notation as described by RFC 5234 is used within the protocol documents,
23 except the following replacement core rules are used:
25 HEXDIG = DIGIT / "a" / "b" / "c" / "d" / "e" / "f"
28 We also define the following common rules:
32 obj-id = 40*(HEXDIGIT)
35 refname /= "refs/" <see discussion below>
38 A refname is a hierarchical octet string beginning with "refs/" and
39 not violating the 'git-check-ref-format' command's validation rules.
40 More specifically, they:
42 . They can include slash `/` for hierarchical (directory)
43 grouping, but no slash-separated component can begin with a
46 . They must contain at least one `/`. This enforces the presence of a
47 category like `heads/`, `tags/` etc. but the actual names are not
50 . They cannot have two consecutive dots `..` anywhere.
52 . They cannot have ASCII control characters (i.e. bytes whose
53 values are lower than \040, or \177 `DEL`), space, tilde `~`,
54 caret `^`, colon `:`, question-mark `?`, asterisk `*`,
55 or open bracket `[` anywhere.
57 . They cannot end with a slash `/` or a dot `.`.
59 . They cannot end with the sequence `.lock`.
61 . They cannot contain a sequence `@{`.
63 . They cannot contain a `\\`.
69 Much (but not all) of the payload is described around pkt-lines.
71 A pkt-line is a variable length binary string. The first four bytes
72 of the line, the pkt-len, indicates the total length of the line,
73 in hexadecimal. The pkt-len includes the 4 bytes used to contain
74 the length's hexadecimal representation.
76 A pkt-line MAY contain binary data, so implementors MUST ensure
77 pkt-line parsing/formatting routines are 8-bit clean.
79 A non-binary line SHOULD BE terminated by an LF, which if present
80 MUST be included in the total length. Receivers MUST treat pkt-lines
81 with non-binary data the same whether or not they contain the trailing
82 LF (stripping the LF if present, and not complaining when it is
85 The maximum length of a pkt-line's data component is 65516 bytes.
86 Implementations MUST NOT send pkt-line whose length exceeds 65520
87 (65516 bytes of payload + 4 bytes of length data).
89 Implementations SHOULD NOT send an empty pkt-line ("0004").
91 A pkt-line with a length field of 0 ("0000"), called a flush-pkt,
92 is a special case and MUST be handled differently than an empty
96 pkt-line = data-pkt / flush-pkt
98 data-pkt = pkt-len pkt-payload
100 pkt-payload = (pkt-len - 4)*(OCTET)
105 Examples (as C-style strings):
108 pkt-line actual value
109 ---------------------------------
112 "000bfoobar\n" "foobar\n"
118 Part of the linkgit:git[1] suite