ref: 93b94c30aefe0eebb5acb5e36df5b950dec70a94
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)
}