Retrieve a list of all files tracked in the repository.
()
| 216 | |
| 217 | /** Retrieve a list of all files tracked in the repository. */ |
| 218 | allFiles(): string[] { |
| 219 | return gitOutputAsArray(this.runGraceful(['ls-files'])); |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Sanitizes the given console message. This method can be overridden by |
no test coverage detected