ref: af08c84539f9353718604988ba27ae3c466860fc
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
}