Example checkout
-
+
+ Now that we can parse blobs objects, trees, and commits, it is now possible to checkout a given commit.
+ The following operation will revert the working tree to the state that was copied in the initial commit.
+
@@ -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.