summaryrefslogtreecommitdiff
path: root/doCommit.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-09 21:32:06 -0500
committerJeff Carr <[email protected]>2025-10-09 21:32:06 -0500
commitee47b39efae2347e5ee3fff2888a008d4848276b (patch)
treed3d553f3df83eaa16111137e220b0a4a7b0b029c /doCommit.go
parent43932185ea487ec922d3e4a50625b6de22358c2a (diff)
set the terminal titlev0.25.75
Diffstat (limited to 'doCommit.go')
-rw-r--r--doCommit.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/doCommit.go b/doCommit.go
index 9a24263..8f041b3 100644
--- a/doCommit.go
+++ b/doCommit.go
@@ -16,7 +16,8 @@ func doCommit() (string, error) {
found := me.forge.CheckDirty()
var newpatches bool
for repo := range found.IterAll() {
- log.Info("do a commit on repo", repo.GetNamespace())
+ s := log.Sprintf("%s [git commit --all]", repo.GetNamespace())
+ setTerminalTitle(s)
if err := doCommitRepo(repo); err != nil {
badExit(err)
}