summaryrefslogtreecommitdiff
path: root/doCheckout.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-15 17:07:07 -0600
committerJeff Carr <[email protected]>2025-02-15 17:07:07 -0600
commit620569a97ca76be1f27c2394a044f0a250f3eb3b (patch)
treedae9fc823958265f9a5152a4dbcc42f12a4eeb59 /doCheckout.go
parentec0fe277f676fc1f0234aec6e2db6caf7e965d3f (diff)
remote lots of cruft
Diffstat (limited to 'doCheckout.go')
-rw-r--r--doCheckout.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/doCheckout.go b/doCheckout.go
index 06c36cf..fdd5edb 100644
--- a/doCheckout.go
+++ b/doCheckout.go
@@ -254,7 +254,7 @@ func doAllCheckoutMaster() error {
// shared this with the GUI and the command line?
func doCheckoutShared() error {
if me.argvCheckoutUser {
- log.Info("Starting git checkout user")
+ // log.Info("Starting git checkout user")
if argv.Force {
log.Info("going to force create user branches")
if err := makeUserBranches(); err != nil {
@@ -267,7 +267,7 @@ func doCheckoutShared() error {
}
if me.argvCheckoutDevel {
- log.Info("Starting git checkout devel")
+ // log.Info("Starting git checkout devel")
if argv.Force {
log.Info("going to force create devel branches")
makeDevelBranches()
@@ -304,7 +304,7 @@ func doCheckout() error {
if err := doCheckoutShared(); err != nil {
badExit(err)
}
- okExit("git checkout done")
+ okExit("")
return nil
}