Author:
{{ $commit.AuthorName }}
{{ $commit.AuthorEmail }}
{{ if ne $commit.AuthorEmail $commit.CommitterEmail }}
Committed by:
{{ $commit.CommitterName }}
{{ $commit.CommitterEmail }}
{{ end }}
Committed at:
{{ humanizeTime $commit.Committed }}
{{ if ne $commit.Authored $commit.Committed }}
Authored at:
{{ humanizeTime $commit.Authored }}
{{ end }}
{{ if $commit.ChangeID -}}
Change ID:
{{ $commit.ChangeID }}
{{- end }}
{{ if $parents }}
Parent:
{{ range $i, $p := $parents -}}
{{ if $i }}, {{ end -}}
{{ $p }}
{{- end }}
{{ end }}