smartgit/ts/smartgit.commit.ts

12 lines
318 B
TypeScript
Raw Normal View History

2016-01-18 03:20:37 +00:00
/// <reference path="./index.ts" />
module SmartgitCommit {
export var init = function() {
var commit = function(pathArg:string,commitMessage:string) {
var result = plugins.nodegit.index.addByPath(pathArg);
if (result == 0) {
}
};
return commit;
}
}