Scm/Git/Repo.js
authorAlan Knowles <alan@akbkhome.com>
Sun, 11 Sep 2011 23:49:42 +0000 (07:49 +0800)
committerAlan Knowles <alan@akbkhome.com>
Sun, 11 Sep 2011 23:49:42 +0000 (07:49 +0800)
Scm/Git/Repo.js

index c351719..96f5879 100644 (file)
@@ -40,11 +40,13 @@ Repo = XObject.define(
                 return this.branches;
             }
             this.branches = {};
+            
             var bl = this.git([ 'branch', {
                 'no-color' : true,
                 'verbose' : true,
                 'a' : true
             }]).split("\n");
+            
             bl.forEach(function(line) {
                   // * master 61e7e7d oneliner
                 var active = line[0]=='*';