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