smartgit/ts/smartgit.commit.ts
2016-01-18 04:20:37 +01:00

12 lines
318 B
TypeScript

/// <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;
}
}