From 1902c22fb4a8c51231ed88905b24def9a48c57fa Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 25 Sep 2017 11:21:51 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GitRepo.vala b/GitRepo.vala index 1e02be0b..e39e8e27 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -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); } -- 2.39.2