X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=GitBranch.vala;h=c08721be57d61f4f40d04258b30c13585676d8f0;hb=1c3d87de49e514421b3a08bfc3d6d4a822517f98;hp=e092430b94474ce3b96c67fdbc763bf7b8d782b6;hpb=2eb32b1bbe5ff712768821d66e98211b44b3c5bb;p=gitlive diff --git a/GitBranch.vala b/GitBranch.vala index e092430b..c08721be 100644 --- a/GitBranch.vala +++ b/GitBranch.vala @@ -90,9 +90,15 @@ public class GitBranch : Object var r = repo.repo.enumerate_branches(Ggit.BranchType.LOCAL); while (r.next()) { + + + var br = new GitBranch(repo); var gbr = r.get() as Ggit.Branch; - + if (!gbr.is_branch()) { + continue; + } + br.active = gbr.is_head(); br.name = gbr.get_name(); br.lastrev = gbr.get_target().to_string(); @@ -111,15 +117,22 @@ public class GitBranch : Object br.remoterev = remotes.get(rname).to_string(); remotes_used.set(rname,true); size_t ahead, behind; - repo.repo.get_ahead_behind( - gbr.get_target(), - remotes.get(rname), - out ahead, - out behind - ); - br.ahead = (int)ahead; - br.behind = (int) behind; + br.behind = 1; + + try { + repo.repo.get_ahead_behind( + gbr.get_target(), + remotes.get(rname), + out ahead, + out behind + ); + br.ahead = (int)ahead; + br.behind = (int) behind; + } catch(Error e) { + GLib.debug("we probably need to fetch... %s", repo.name); + } + } @@ -128,7 +141,7 @@ public class GitBranch : Object } if (br.active) { GLib.debug("repo: %s currentBranch = %s", repo.name, br.name); - repo.currentBranch = br; + repo._currentBranch = br; } } @@ -143,7 +156,11 @@ public class GitBranch : Object continue; } // not clear how to do this yet... - repo.git( { "branch" ,"--track" , rn, "origin/" + rn} ); + try { + repo.git( { "branch" ,"--track" , rn, "origin/" + rn} ); + } catch (Error e) { + continue; // allow failure? + } var br = new GitBranch(repo); br.name = rn; br.lastrev = ""; // it's behind @@ -155,7 +172,8 @@ public class GitBranch : Object repo.branches.set(rn, br); } - if (repo.currentBranch == null) { + + if (repo._currentBranch == null) { GLib.error("could not find active Branch for %s", repo.name); }