Skip to content

Commit 4aa90c7

Browse files
authored
Stick to one sentence per line
1 parent 7ce5250 commit 4aa90c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

book/10-git-internals/sections/transfer-protocols.asc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,9 @@ $ ssh -x git@server "git-receive-pack 'simplegit-progit.git'"
153153
The `git-receive-pack` command immediately responds with one line for each reference it currently has – in this case, just the `master` branch and its SHA-1.
154154
The first line also has a list of the server's capabilities (here, `report-status`, `delete-refs`, and some others, including the client identifier).
155155

156-
The data is transmitted in chunks. Each chunk starts with a 4-character hex value specifying how long the chunk is (including the 4 bytes of the length itself). Chunks usually contain a single line of data and a trailing linefeed.
156+
The data is transmitted in chunks.
157+
Each chunk starts with a 4-character hex value specifying how long the chunk is (including the 4 bytes of the length itself).
158+
Chunks usually contain a single line of data and a trailing linefeed.
157159
Your first chunk starts with 00a5, which is hexadecimal for 165, meaning the chunk is 165 bytes long.
158160
The next chunk is 0000, meaning the server is done with its references listing.
159161

0 commit comments

Comments
 (0)