GitRepo.vala
[gitlive] / 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);
     
     }