summaryrefslogtreecommitdiff
path: root/reloadTags.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-07-08 15:48:59 -0500
committerJeff Carr <[email protected]>2025-07-08 15:48:59 -0500
commit1c439782941d21d8b26bf5590b4f3d4b69da70ad (patch)
treeeef7eccf791eb0b179b1a1efa2aa3c0a0178bc80 /reloadTags.go
parentd0616fae03cdf2160d2dce57be1cf44772b52a34 (diff)
add debugging printf'sv0.0.104
Diffstat (limited to 'reloadTags.go')
-rw-r--r--reloadTags.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/reloadTags.go b/reloadTags.go
index 9017171..ce25b0c 100644
--- a/reloadTags.go
+++ b/reloadTags.go
@@ -11,6 +11,13 @@ import (
timestamppb "google.golang.org/protobuf/types/known/timestamppb"
)
+// redo this. use go-git2 ?
+func (repo *Repo) allCommits() error {
+ return nil
+}
+
+/*
+// this is dumb
func (repo *Repo) AllCommits() error {
// tags := []string{"cd", "%(creatordate)", "%(*authordate)", "%(refname)", "%(subject)"}
// format := strings.Join(tags, "_,,,_%")
@@ -27,6 +34,7 @@ func (repo *Repo) AllCommits() error {
repo.Times.NewestCommit = timestamppb.New(tmp)
return nil
}
+*/
// reload the tags
func (repo *Repo) reloadGitTags() error {