summaryrefslogtreecommitdiff
path: root/git.go
diff options
context:
space:
mode:
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
}