shithub: furgit

ref: 9e44418ce9d88f4159067b1ce2c808cb93e29c38
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
}