summaryrefslogtreecommitdiff
path: root/doCommit.go
diff options
context:
space:
mode:
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)
}