now using native git through shelljs since it proves to be much more stable

This commit is contained in:
2016-07-02 02:22:03 +02:00
parent 527d1b7aa5
commit c8c9d8a407
24 changed files with 56 additions and 132 deletions

View File

@@ -2,6 +2,5 @@ import "typings-global";
import * as plugins from "./smartgit.plugins";
export let pull = (optionsArg:{path:string,ref?:string}) => {
if(!optionsArg.ref) optionsArg.ref = "master";
plugins.nodegit.Repository.open(optionsArg.path);
}