(self, repo_dir: str)
| 72 | return _GitCommand.is_lfs_available() |
| 73 | |
| 74 | def git_lfs_install(self, repo_dir: str) -> bool: |
| 75 | try: |
| 76 | _GitCommand.lfs_install(Path(repo_dir)) |
| 77 | return True |
| 78 | except Exception: |
| 79 | return False |
| 80 | |
| 81 | def list_lfs_files(self, repo_dir: str) -> List[str]: |
| 82 | rsp = self._run_git_command('-C', repo_dir, 'lfs', 'ls-files') |