From f051898378892b9a58e36cc28af68200cadde315 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 17 Oct 2025 04:05:59 -0500 Subject: remove "forge checkout". too easy to type instead of git checkout --- doCommit.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doCommit.go') diff --git a/doCommit.go b/doCommit.go index 4a2267c..16e1f78 100644 --- a/doCommit.go +++ b/doCommit.go @@ -42,7 +42,7 @@ func doCommit() (string, error) { if repo.GetCurrentBranchName() != repo.GetUserBranchName() { found := new(gitpb.Repos) found.Append(repo) - footer := me.forge.PrintHumanTable(found) + footer := found.PrintDefaultTB() log.Info(footer) log.Info("") log.Info("wrong branch. Can not commit on", repo.GetCurrentBranchName()) @@ -61,8 +61,8 @@ func doCommitRepo(repo *gitpb.Repo) error { if repo.GetCurrentBranchName() != repo.GetUserBranchName() { found := new(gitpb.Repos) found.Append(repo) - me.forge.PrintHumanTable(found) - log.Info("") + footer := found.PrintDefaultTB() + log.Info(footer) log.Info("wrong branch. Can not commit on", repo.GetCurrentBranchName()) log.Info("") return nil -- cgit v1.2.3