summaryrefslogtreecommitdiff
path: root/doVerifyUser.go
diff options
context:
space:
mode:
Diffstat (limited to 'doVerifyUser.go')
-rw-r--r--doVerifyUser.go37
1 files changed, 0 insertions, 37 deletions
diff --git a/doVerifyUser.go b/doVerifyUser.go
deleted file mode 100644
index ae1a0ff..0000000
--- a/doVerifyUser.go
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright 2017-2025 WIT.COM Inc. All rights reserved.
-// Use of this source code is governed by the GPL 3.0
-
-package main
-
-/*
-func doVerifyUser() error {
- me.found = new(gitpb.Repos)
- all := me.forge.Repos.SortByFullPath()
- for all.Scan() {
- repo := all.Next()
- if repo.IsDirty() {
- log.Info(repo.GetGoPath(), "is dirty")
- me.found.AppendByGoPath(repo)
- continue
- }
- if repo.ExistsUserBranchRemote() {
- }
-
- if repo.ExistsUserBranch() {
- }
- if repo.GetMasterBranchName() == repo.GetCurrentBranchName() {
- log.Info(repo.GetGoPath(), "is not on master branch")
- continue
- }
-
- devel := repo.GetDevelBranchName()
- if argv.Verbose {
- log.Printf("Start clean devel branch: %s %s\n", repo.GetGoPath(), devel)
- }
- }
- return nil
-}
-
-func verifyRemoteUserBranch(repo *gitpb.Repo) {
-}
-*/