// This provides symbolic names for the octal modes used by git trees. var modes = require('js-git/lib/modes'); // Create a repo by creating a plain object. var repo = {}; // This provides an in-memory storage backend that provides the following APIs: // - saveAs(type, value) => hash // - loadAs(type, hash) => hash // - saveRaw(hash, binary) => // - loadRaw(hash) => binary require('js-git/mixins/m

