forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd-and-commit.js
More file actions
59 lines (48 loc) · 2.04 KB
/
add-and-commit.js
File metadata and controls
59 lines (48 loc) · 2.04 KB
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
53
54
55
56
57
58
59
var git = require('../'),
path = require('path'),
fs = require('fs'),
fileName = 'newfile.txt',
fileContent = 'hello world'
;
/**
* This example creates a certain file `newfile.txt`, adds it to the git index and
* commits it to head. Similar to a `git add newfile.txt` followed by a `git commit`
**/
//open a git repo
git.Repo.open(path.resolve(__dirname, '../.git'), function(openReporError, repo) {
if (openReporError) throw openReporError;
//create the file in the repo's workdir
fs.writeFile(path.join(repo.workdir(), fileName), fileContent, function(writeError) {
if (writeError) throw writeError;
//add the file to the index...
repo.openIndex(function(openIndexError, index) {
if (openIndexError) throw openIndexError;
index.read(function(readError) {
if (readError) throw readError;
index.addByPath(fileName, function(addByPathError) {
if (addByPathError) throw addByPathError;
index.write(function(writeError) {
if (writeError) throw writeError;
index.writeTree(function(writeTreeError, oid) {
if (writeTreeError) throw writeTreeError;
//get HEAD
git.Reference.oidForName(repo, 'HEAD', function(oidForName, head) {
if (oidForName) throw oidForName;
//get latest commit (will be the parent commit)
repo.getCommit(head, function(getCommitError, parent) {
if (getCommitError) throw getCommitError;
var author = git.Signature.create("Scott Chacon", "schacon@gmail.com", 123456789, 60);
var committer = git.Signature.create("Scott A Chacon", "scott@github.com", 987654321, 90);
//commit
repo.createCommit('HEAD', author, committer, 'message', oid, [parent], function(error, commitId) {
console.log("New Commit:", commitId.sha());
});
});
});
});
});
});
});
});
});
});