From 88ca40bcfa11f464828cace14a07a9b59a00d571 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 16 Feb 2024 01:22:37 -0600 Subject: tag date format things --- git.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'git.go') diff --git a/git.go b/git.go index 4875812..3a3fcdd 100644 --- a/git.go +++ b/git.go @@ -207,14 +207,14 @@ func (rs *RepoStatus) SetMainWorkingName(s string) { } _, ok := rs.gitConfig.branches[s] if ok { - log.Info("git branch", s, "seems to exist") + // log.Info("git branch", s, "seems to exist") rs.mainWorkingName.SetValue(s) return } s = "guimaster" _, ok = rs.gitConfig.branches[s] if ok { - log.Info("git branch", s, "seems to exist") + // log.Info("git branch", s, "seems to exist") rs.mainWorkingName.SetValue(s) return } @@ -222,7 +222,7 @@ func (rs *RepoStatus) SetMainWorkingName(s string) { s = "master" _, ok = rs.gitConfig.branches[s] if ok { - log.Info("git branch", s, "seems to exist") + // log.Info("git branch", s, "seems to exist") rs.mainWorkingName.SetValue(s) return } @@ -230,7 +230,7 @@ func (rs *RepoStatus) SetMainWorkingName(s string) { s = "main" _, ok = rs.gitConfig.branches[s] if ok { - log.Info("git branch", s, "seems to exist") + // log.Info("git branch", s, "seems to exist") rs.mainWorkingName.SetValue(s) return } -- cgit v1.2.3