aboutsummaryrefslogtreecommitdiff
path: root/ref/ref.go
blob: 0c70cc268d2120c2ee95b67164ec38cd5835ced4 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
package ref

// Ref is a Git reference.
//
// Consider casting to [Detached] or [Symbolic].
type Ref interface {
	isRef()
	Name() string
}