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

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