func github.com/go-git/go-billy/v5/osfs.New

10 uses

	github.com/go-git/go-billy/v5/osfs (current package)
		os.go#L23: func New(baseDir string) billy.Filesystem {

	github.com/go-git/go-git/v5
		remote.go#L173: 				osfs.New(r.c.URLs[0]), cache.NewObjectLRUDefault())
		repository.go#L222: 		dot = osfs.New(path)
		repository.go#L224: 		wt = osfs.New(path)
		repository.go#L268: 		fs = osfs.New(path)
		repository.go#L325: 		return osfs.New(gitdir), nil
		repository.go#L328: 	return osfs.New(fs.Join(path, gitdir)), nil

	github.com/go-git/go-git/v5/plumbing/transport/server
		loader.go#L14: var DefaultLoader = NewFilesystemLoader(osfs.New(""))

	github.com/go-git/go-git/v5/storage/filesystem/dotgit
		dotgit.go#L1074: 		fs := osfs.New(filepath.Dir(path))

	golang.org/x/pkgsite/internal/stdlib
		stdlib.go#L210: 	fs := osfs.New(filepath.Join(testhelper.TestDataPath("testdata"), version))