diff options
| author | Jeff Carr <[email protected]> | 2024-02-16 01:22:37 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-16 01:22:37 -0600 |
| commit | 88ca40bcfa11f464828cace14a07a9b59a00d571 (patch) | |
| tree | c1be5d276bbbe6058853a05b963d441dd35e87b2 /git.go | |
| parent | 2bc2096e841f3b262563126feb8a7a4c2b66f090 (diff) | |
tag date format things
Diffstat (limited to 'git.go')
| -rw-r--r-- | git.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 } |
