var Separator = string(filepath.Separator)
type DummyIgnoreMatcher bool
func (d DummyIgnoreMatcher) Match(path string, isDir bool) bool
type IgnoreMatcher interface { Match(path string, isDir bool) bool }
func NewGitIgnore(gitignore string, base ...string) (IgnoreMatcher, error)
func NewGitIgnoreFromReader(path string, r io.Reader) IgnoreMatcher