all repos

mugit @ 530bb1cc2afcc6da0dd13bb3091467411846706e

🐮 git server that your cow will love
1 files changed, 2 insertions(+), 2 deletions(-)
refactor: use committer time not authored time
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-09 21:54:52 +0200
Change ID: wlklwywwonylsmntkqmpylzklzstkmwk
Parent: c845996
M internal/git/repo.go

@@ -97,7 +97,7 @@ ci.ForEach(func(c *object.Commit) error {

commits = append(commits, &Commit{ AuthorEmail: c.Author.Email, AuthorName: c.Author.Name, - Committed: c.Author.When, + Committed: c.Committer.When, Hash: c.Hash.String(), HashShort: c.Hash.String()[:8], Message: c.Message,

@@ -121,7 +121,7 @@

return &Commit{ AuthorEmail: c.Author.Email, AuthorName: c.Author.Name, - Committed: c.Author.When, + Committed: c.Committer.When, Hash: c.Hash.String(), HashShort: c.Hash.String()[:8], Message: c.Message,