ref: 37e4dcd9ba583936a7da9bbcb865c6be448e2c19
dir: /refstore/reftable/path.go/
package reftable
import "path"
// pathMatch applies path.Match to full ref names.
func pathMatch(pattern, name string) (bool, error) {
return path.Match(pattern, name)
}