summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-16 01:22:37 -0600
committerJeff Carr <[email protected]>2024-02-16 01:22:37 -0600
commit88ca40bcfa11f464828cace14a07a9b59a00d571 (patch)
treec1be5d276bbbe6058853a05b963d441dd35e87b2 /git.go
parent2bc2096e841f3b262563126feb8a7a4c2b66f090 (diff)
tag date format things
Diffstat (limited to 'git.go')
-rw-r--r--git.go8
1 files changed, 4 insertions, 4 deletions
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
}