ref: 474b047cd065bb2cc45153636123ea0812507ef2
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)
}