Count the number of tracked files.
(&self)
| 516 | |
| 517 | /// Count the number of tracked files. |
| 518 | pub fn tracked_file_count(&self) -> Result<usize, RepositoryError> { |
| 519 | Ok(self.list_tracked_files()?.len()) |
| 520 | } |
| 521 | |
| 522 | /// Remove a file from the FILE_INDEX. |
| 523 | /// |
nothing calls this directly
no test coverage detected