summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
Diffstat (limited to 'branches.go')
-rw-r--r--branches.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/branches.go b/branches.go
index 4c24872..2788300 100644
--- a/branches.go
+++ b/branches.go
@@ -76,7 +76,6 @@ func (repo *Repo) DeleteLocalDevelBranch() error {
b1 := repo.CountDiffObjects(branch, remote) // should be zero
if b1 == 0 {
cmd := []string{"git", "branch", "-D", repo.GetDevelBranchName()}
- // log.Info("DEVEL IS IN REMOTE", repo.GetGoPath(), cmd)
_, err := repo.RunVerboseOnError(cmd)
return err
} else {