shithub: furgit

ref: 1734207266752b9464f42c31f7728a7e3c692c50
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
}