diff --git a/index.html b/index.html index f43a93b..80ef2b8 100644 --- a/index.html +++ b/index.html @@ -1209,6 +1209,8 @@ function to_hex(bin) {

Parsing commit objects

+

The following function is fairly long, but only parses lines of the form header-name header-value + (with some restrictions depending on the header), followed by a blenk line, and a free-form description.

@@ -1306,7 +1313,7 @@ function git_init() {

The index

When adding files with git add, GIT does not immediately create a commit object. Instead, it adds the files to the index, which uses a binary format with lots of metadata. - The mock filesystem used here lacks most of these pieces of information, so thr value 0 + The mock filesystem used here lacks most of these pieces of information, so the value 0 will be used for most fields. See this blog post for a more in-depth study of the index.