X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=GitRepo.vala;h=b5e9ad0b775b1a923caebc778064d67f03a5a835;hb=4ef0ac118072715407907c93a38120afc117af77;hp=0b789804df5b487b292f37afc47cd1672be38937;hpb=9b4c3920811a386a98ba3133bcb3f2c88994c5f7;p=gitlive diff --git a/GitRepo.vala b/GitRepo.vala index 0b789804..b5e9ad0b 100644 --- a/GitRepo.vala +++ b/GitRepo.vala @@ -18,6 +18,7 @@ public class GitRepo : Object public bool debug = false; public Gee.HashMap ignore_files; + public GitBranch currentBranch; /** * index of.. matching gitpath.. @@ -151,15 +152,53 @@ public class GitRepo : Object public void loadBranches() { + this.branches = new Gee.HashMap(); + string[] cmd = { "branch", "--no-color", "--verbose", "--no-abbrev" , "-a" }; var res = this.git( cmd ); var lines = res.split("\n"); for (var i = 0; i < lines.length ; i++) { var br = new GitBranch(this); - br. + if (!br.parseBranchListItem(lines[i])) { + continue; + } + GLib.debug("add branch %s", br.realName()); + + branches.set(br.realName(), br); + if (br.active) { + this.currentBranch = br; + } } } + public string branchesToString() + { + var ret = ""; + foreach( var br in this.branches.values) { + if (br.name == "") { + continue; + } + ret += ret.length > 0 ? "," : ""; + ret += br.name; + + } + return ret; + + } + + public void setActiveTicket(RooTicket ticket, string branchname) + { + + + } + + public void createBranchNamed(string branchname) + { + string[] cmd = { "checkout", "-b" , branchname }; + this.git(cmd); + this.loadBranches(); // update branch list... + } + /** * add: