ref: 0b2dcaabe23d45f6feb2273031854b14b512e3ff
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
}