github.com/grahambrereton-form3/tilt@v0.10.18/internal/git/gitignore.go (about) 1 package git 2 3 import ( 4 "context" 5 6 "github.com/windmilleng/tilt/pkg/model" 7 ) 8 9 func NewRepoIgnoreTester(ctx context.Context, repoRoot string) model.PathMatcher { 10 return model.NewRelativeFileOrChildMatcher(repoRoot, ".git") 11 }