GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Thu, 15 Nov 2018 09:08:30 +0000 (17:08 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 15 Nov 2018 09:08:30 +0000 (17:08 +0800)
GitRepo.vala

index bba0b3c..d64448d 100644 (file)
@@ -249,7 +249,7 @@ public class GitRepo : Object
     
        public void loadStatus()
        {
-               var r = this.git({ "status" , "--porcelian" });
+               var r = this.git({ "status" , "--porcelain" });
                this.has_local_changes = r.length > 0;
        
        }    
@@ -688,7 +688,7 @@ public class GitRepo : Object
     public void pull_async(GitAsyncCallback cb) 
     {
     
-        string[] cmd = { "pull" , "--no-edit" };
+         string[] cmd = { "pull" , "--no-edit" };
          this.git_async( cmd , cb);