summaryrefslogtreecommitdiff
path: root/branches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-31 13:28:40 -0500
committerJeff Carr <[email protected]>2025-08-31 13:28:40 -0500
commit46d61345afa0cd87567bc0293cd3413b54e3c677 (patch)
tree1f370863ddeb4e391c680601982f91519ba35d29 /branches.go
parent434f62a7e6ffd6d16230ba920393c82c487633ae (diff)
go back to global mutex again. hmmm.
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 {