shithub: furgit

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