summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-20 04:11:53 -0600
committerJeff Carr <[email protected]>2025-01-20 04:11:53 -0600
commitef1a3063527e17507af88c644ca1ef7851ab53b0 (patch)
treeabd6f507ad6a2c9fc13554f504e107eef4edffdf
parent55d8abd2a3c1686a57db79378b2ee19bc62970d8 (diff)
verbose show _anything_ not exactv0.22.57
-rw-r--r--doClean.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/doClean.go b/doClean.go
index 8b6f057..f6efdb5 100644
--- a/doClean.go
+++ b/doClean.go
@@ -509,6 +509,9 @@ func isBranchSubsetOfTrunk(repo *gitpb.Repo, branch string, trunk string) error
// log.Info("branch and trunk are identical ==", branch, b1, trunk, b2)
return nil
}
+ if argv.Verbose {
+ log.Printf("%-40s NOT EXACT %s %s (%d) (%d)\n", repo.GetGoPath(), branch, trunk, b1, b2)
+ }
if b1 == 0 {
cmd := []string{"git", "merge", trunk}
log.Printf("%-40s branch %s needs merge with trunk %s len(%d) %s\n", repo.GetGoPath(), branch, trunk, b2, cmd)