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