GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Mon, 25 Sep 2017 03:21:51 +0000 (11:21 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 25 Sep 2017 03:21:51 +0000 (11:21 +0800)
GitRepo.vala

index 1e02be0..e39e8e2 100644 (file)
@@ -277,7 +277,8 @@ public class GitRepo : Object
     public delegate void GitAsyncCallback (string str)
     async public string pull_async(GitAsyncCallback cb) {
     
-         
+          string[] cmd = { "pull" , "--no-edit" };
+        return this.git( cmd , cb);
     
     }