summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
Diffstat (limited to 'git.go')
-rw-r--r--git.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/git.go b/git.go
index b0963c7..c087f7e 100644
--- a/git.go
+++ b/git.go
@@ -6,6 +6,7 @@ import (
"time"
"go.wit.com/lib/gui/shell"
+ "go.wit.com/lib/protobuf/gitpb"
"go.wit.com/log"
)
@@ -199,7 +200,7 @@ func (rs *RepoStatus) setLastTagVersion() {
func (rs *RepoStatus) populateTags() {
tmp := rs.realPath.String() + "/.git/refs/tags"
log.Log(REPO, "populateTags() path =", tmp)
- for _, tag := range listFiles(tmp) {
+ for _, tag := range gitpb.ListFiles(tmp) {
if rs.tags[tag] == "" {
log.Log(REPO, "populateTags() Adding new tag", tag)
// rs.tagsDrop.AddText(tag)
@@ -209,12 +210,13 @@ func (rs *RepoStatus) populateTags() {
// rs.tagsDrop.SetText(rs.lasttagrev)
}
+/*
func (rs *RepoStatus) getBranches() []string {
var all []string
var heads []string
var remotes []string
- heads = listFiles(rs.realPath.String() + "/.git/refs/heads")
- remotes = listFiles(rs.realPath.String() + "/.git/refs/remotes")
+ heads = gitpb.ListFiles(rs.realPath.String() + "/.git/refs/heads")
+ remotes = gitpb.ListFiles(rs.realPath.String() + "/.git/refs/remotes")
all = heads
@@ -225,6 +227,7 @@ func (rs *RepoStatus) getBranches() []string {
}
return all
}
+*/
// returns quickly based on the last time it was checked
func (rs *RepoStatus) IsDirty() bool {