blob: 2364406c4ef1ab30d1428f2bcdbc3ff5c2551c0d (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// 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
}
|