The main reference for this tutorial is the Pro Git book section on GIT internals.
@@ -88,9 +90,9 @@ directory. function listdir(dirname) { var depth = dirname.split('/').length + 1; var descendents = filesystem - .filter(filename => filename.startsWith(dirname + '/')); + .filter(function (filename) { return filename.startsWith(dirname + '/'); }); var children = descendents - .map(filename => filename.split('/')[depth]); + .map(function (filename) { return filename.split('/')[depth]; }); // remove duplicates: return Array.from(new Set(children)); } @@ -217,14 +219,17 @@ This is done by creating a tree object // filenames is a list of strings // subtrees is a list of {name, hash} objects. function store_tree(base_directory, filenames, subtrees) { - var get_file_hash = filename => - from_hex(hash_object(true, 'blob', false, join_paths(base_directory, filename))); + function get_file_hash(filename) { + return from_hex(hash_object(true, 'blob', false, join_paths(base_directory, filename))); + } - var blobs = filenames.map(filename => - "100644 " + filename + "\0" + get_file_hash(filename)); + var blobs = filenames.map(function (filename) { + return "100644 " + filename + "\0" + get_file_hash(filename) + }); - var trees = subtrees.map(subtree => - "40000 " + subtree.name + "\0" + from_hex(subtree.hash)); + var trees = subtrees.map(function (subtree) { + return "40000 " + subtree.name + "\0" + from_hex(subtree.hash); + }); tree_contents = blobs.join('') + trees.join(''); @@ -235,14 +240,14 @@ function store_tree(base_directory, filenames, subtrees) {This function needs a small utility to convert hashes encoded in hexadecimal to a binary form.
By clicking on "Copy commands to recreate in *nix terminal.", it is possible to copy a series of mkdir …
and printf … > …
commands that, when executed, will recreate the virtual filesystem on a real system. The resulting
+folder is binary-compatible with the official git log
, git status
, git checkout
etc.
+commands.