summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-19 06:30:53 -0500
committerJeff Carr <[email protected]>2025-10-19 06:30:53 -0500
commit6deb6c606dce2364f9a1e483831410d4fe4f0878 (patch)
treeb8a85dd824ea2f7d124ec3600320b5813634e9ed
parent632b75e95a4450656dabed2a2df991ab2e986073 (diff)
set term title herev0.25.95
-rw-r--r--doCommit.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/doCommit.go b/doCommit.go
index 16e1f78..e54a805 100644
--- a/doCommit.go
+++ b/doCommit.go
@@ -50,6 +50,8 @@ func doCommit() (string, error) {
return "repo must be on user branch", errors.New("repo must be on user branch")
}
+ s := log.Sprintf("%s [git commit --all]", repo.GetNamespace())
+ setTerminalTitle(s)
if err := repo.GitCommit(); err != nil {
return "git commit --all", err
}