diff options
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 } |
