ref: ab174c473618dd3743881cf44e02c2db4d1ecd5f
dir: /object/signature/signature.go/
// Package signature provides Git author, committer, and tagger signatures.
package signature
// Signature represents a Git signature (author/committer/tagger).
type Signature struct {
Name []byte
Email []byte
WhenUnix int64
OffsetMinutes int32
}