From a978cf5ed4d78f0c5de51e505e3a314c516aeb72 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 25 Aug 2017 12:39:50 +0800 Subject: [PATCH] GitRepo.vala --- GitRepo.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitRepo.vala b/GitRepo.vala index 9581510b..93a94e24 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -244,7 +244,7 @@ public class GitRepo : Object public string pull () throws Error, SpawnError { // should probably hand error conditions better... - string[] cmd = { "pull" , "--no-edit" }; + string[] cmd = { "pull" , "--no-edit", "origin", "HEAD" }; return this.git( cmd ); -- 2.39.2