From 9c1ba367f6b90e58bbbb57468b88205ca1e69dbb Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 23 Sep 2025 09:02:27 -0500 Subject: [PATCH] set PB tables are working --- gitTag.common.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/gitTag.common.go b/gitTag.common.go index 2c83da1..0bbd70c 100644 --- a/gitTag.common.go +++ b/gitTag.common.go @@ -19,6 +19,16 @@ func (repo *Repo) ActualDevelHash() string { return "" } +func (repo *Repo) ActualGetDevelHash() string { + s := repo.GetDevelBranchName() + return repo.GetLocalHash(s) +} + +func (repo *Repo) ActualGetUserHash() string { + s := repo.GetUserBranchName() + return repo.GetLocalHash(s) +} + func (repo *Repo) GetLocalHash(brname string) string { refname := "refs/heads/" + brname for tag := range repo.Tags.IterAll() {