shithub: furgit

ref: b90593c9b83f71de343e27cd1b489dff79bd4ac7
dir: /ref/ref.go/

View raw version
// 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
}