-
Notifications
You must be signed in to change notification settings - Fork 699
Closed
Description
Hi, I have init a repo with the code:
git.Repo.init(resourcePath,false,function(initReporError, repo){
if (initReporError)
throw initReporError;
console.log("Repo init : "+repo);
}
Then I create commit with the code:
git.Repo.open(path.resolve(__dirname, '../.git'), function(openReporError, repo) {
if (openReporError) throw openReporError;
//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());
});
});
});
});
});
});
});
});
});
It says "Error: Reference 'refs/heads/master' not found".
I can run git add/git commit manually and it will create refs/heads/master. But the code cannot.
So what can I do for this? Thanks very much.
Reactions are currently unavailable