GitRepo.vala
authorAlan Knowles <alan@roojs.com>
Wed, 31 Oct 2018 08:22:14 +0000 (16:22 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 31 Oct 2018 08:22:14 +0000 (16:22 +0800)
GitRepo.vala

index a7c7860..6664fdd 100644 (file)
@@ -194,7 +194,9 @@ public class GitRepo : Object
     
     public void createBranchNamed(string branchname)
     {
-    
+        string[] cmd = { "checkout", "-b" , branchname  };
+        this.git(cmd);
+        
     }