(self, path)
| 799 | return f_st, git_st, is_au |
| 800 | |
| 801 | def path_is_ignored(self, path): |
| 802 | _check_path_is_repo_relative(path) |
| 803 | |
| 804 | git_path = _get_git_path(path) |
| 805 | return self.gl_repo.git_repo.path_is_ignored(git_path) |
| 806 | |
| 807 | |
| 808 | # File-related methods |
nothing calls this directly
no test coverage detected