-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcommit.ts
52 lines (44 loc) · 1.55 KB
/
commit.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import path from 'path';
import { getBranchHeadReference, getCurrentBranchName } from '../utils';
import commitTree from './commitTree';
import writeTree from './writeTree';
import { RELATIVE_PATH_TO_REF_HEADS_DIR } from '../constants';
import fs from 'fs';
/**
* The main function that performs the 'commit' command.
*
* @param {string} gitRoot
* @param {string} message
* @returns {string}
*/
function commit(gitRoot: string, message: string): string {
// Make sure a valid message is provided
if (message.length === 0) {
throw new Error('Please provide a valid message');
}
// Get current branch name and a ref to the parent hash if present.
const branch = getCurrentBranchName(gitRoot);
const ref = getBranchHeadReference(gitRoot, branch);
const parents: string[] = [];
if (ref !== undefined) {
parents.push(ref);
}
// Create the tree object from the index
const treeHash = writeTree(gitRoot);
// Create the commit object
const hash = commitTree({ gitRoot, treeHash, message, parents });
// Update the head for the current branch
const pathToRef = path.join(gitRoot, RELATIVE_PATH_TO_REF_HEADS_DIR, branch);
fs.writeFileSync(pathToRef, hash + '\n');
// Create the output string
let str = '';
if (parents.length === 0) {
// First commit of this branch
str += `[${branch} (root-commit) ${hash.substring(0, 7)} ${message} \r\n`;
} else {
str += `[${branch} ${hash.substring(0, 7)}] ${message}\r\n`;
}
// TODO: Show number of files changed, total insertions and deletions
return str;
}
export default commit;