ref: 20a26c67f53252f643a9f20bac0fd73b3b8be863
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)
}