2016-06-12 14:46:59 +00:00
|
|
|
import "typings-global"
|
2016-03-30 23:59:45 +00:00
|
|
|
import plugins = require("./smartgit.plugins");
|
|
|
|
|
|
|
|
export = function(pathArg:string,commitMessage:string) {
|
|
|
|
var result = plugins.nodegit.index.addByPath(pathArg);
|
|
|
|
if (result == 0) {
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|