From e323d5920c76e88948da9f9cfca9ef07e7ef9dd3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 7 Jan 2025 18:24:17 -0600 Subject: rm old code --- git.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'git.go') 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 { -- cgit v1.2.3