X-Git-Url: http://git.roojs.org/?p=gitlive;a=blobdiff_plain;f=GitRepo.vala;h=6664fddb4484c0fe4ef20cf8106679a7e43af1ff;hp=a7c7860656b32f1f3cb8ad18cd94c296f9f6e179;hb=04054d85fa4edf0626ca48414c334e7815c3ded7;hpb=5e13c9ab940bebc133ea4596e6b24bdf39c36714 diff --git a/GitRepo.vala b/GitRepo.vala index a7c78606..6664fddb 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -194,7 +194,9 @@ public class GitRepo : Object public void createBranchNamed(string branchname) { - + string[] cmd = { "checkout", "-b" , branchname }; + this.git(cmd); + }