ref: cf02f2958c191bea02126faf8daf72a7aae76bd9
dir: /ref/ref.go/
// Package ref provides general, detached, and symbolic references.
package ref
// Ref is a Git reference.
//
// Implementations must be in this package.
type Ref interface {
isRef()
Name() string
}