func os.RemoveAll

5 uses

	os (current package)
		path.go#L66: func RemoveAll(path string) error {

	github.com/go-git/go-billy/v5/osfs
		os.go#L111: 	return os.RemoveAll(filepath.Clean(path))

	github.com/go-git/go-git/v5
		repository.go#L414: 		return os.RemoveAll(path)
		repository.go#L430: 		if err := os.RemoveAll(filepath.Join(path, name)); err != nil {

	testing
		testing.go#L947: 				if err := os.RemoveAll(c.tempDir); err != nil {