-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwriteTree.ts
32 lines (25 loc) · 878 Bytes
/
writeTree.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { CachedTree } from '../objects/cachedTree';
import IndexParser from '../indexParser';
import { Tree } from '../objects/tree';
/**
* The main function that performs the 'write-tree' command.
*
* @param {string} gitRoot
* @returns {string}
*/
function writeTree(gitRoot: string): string {
const index = new IndexParser(gitRoot).parse();
const tree = new Tree();
tree.build(index);
// Change this to false for debugging purposes
const writeToDisk = true;
const cachedTree = new CachedTree();
const hash = tree.root.calculateHash(gitRoot, writeToDisk, cachedTree);
// Ensure entries in cachedTree are sorted by their names.
cachedTree.entries.sort((a, b) => a.name.localeCompare(b.name));
// Invalidate the previous cachedTree and update the index.
index.cache = cachedTree;
index.saveToDisk();
return hash;
}
export default writeTree;