summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-22 09:29:46 -0500
committerJeff Carr <[email protected]>2025-09-22 09:29:46 -0500
commit17a62eb8daa812d1450e0b8324abfd9a6c67660e (patch)
tree9bbe5b0c27e32b6cf16db01715380e324f68f45a
parentba2f156c3db95b325c6ca09104c2d209abd15f88 (diff)
show the user namev0.25.12v0.25.11
-rw-r--r--doNormal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doNormal.go b/doNormal.go
index ce0804a..b8271e3 100644
--- a/doNormal.go
+++ b/doNormal.go
@@ -94,7 +94,7 @@ func checkNormalRepoState(repo *gitpb.Repo) error {
repo.VerifyRemoteAndLocalBranches(repo.GetMasterBranchName())
if repo.GetCurrentBranchName() != repo.GetUserBranchName() {
- log.Info("changing to user branch", repo.FullPath)
+ log.Infof("changing to user(%s) branch: %s\n", repo.GetUserBranchName(), repo.FullPath)
repo.CheckoutUser()
repo.ReloadCheck()
err = log.Errorf("now on user branch")