{{ .commit.Author.When.Format "Mon, 02 Jan 2006 15:04:05 -0700" }}
{{ .commit.Author.Name }} {{ .commit.Author.Email }}
| commit | {{ .commit.This }} |
| parent | {{ .commit.Parent }} |
{{ .stat.FilesChanged }} files changed,
{{ .stat.Insertions }} insertions(+),
{{ .stat.Deletions }} deletions(-)
jump to
{{ range .diff }}
{{ $path := .Name.New }}
{{ if not $path }}{{ $path = .Name.Old }}{{ end }}
| {{ if .IsNew }}A{{ end }} {{ if .IsDelete }}D{{ end }} {{ if not (or .IsNew .IsDelete) }}M{{ end }} | {{ $path }} |
{{ if .IsNew }}
A
{{ end }}
{{ if .IsDelete }}
D
{{ end }}
{{ if not (or .IsNew .IsDelete) }}
M
{{ end }}
{{ if .Name.Old }}
{{ .Name.Old }}
{{ if .Name.New }}
→
{{ .Name.New }}
{{ end }}
{{ else }}
{{ .Name.New }}
{{- end -}}
{{ if .IsBinary }}
Not showing binary file.
{{ else }}
{{- range .TextFragments -}}
{{- .Header -}}
{{- range .Lines -}}
{{- if eq .Op.String "+" -}}
{{ .String }}
{{- end -}}
{{- if eq .Op.String "-" -}}
{{ .String }}
{{- end -}}
{{- if eq .Op.String " " -}}
{{ .String }}
{{- end -}}
{{- end -}}
{{- end -}}
{{- end -}}