()
| 101 | } |
| 102 | |
| 103 | async getCurrentCommitHash(): Promise<string> { |
| 104 | const hash = await this.shadowGitRepository.raw('rev-parse', 'HEAD'); |
| 105 | return hash.trim(); |
| 106 | } |
| 107 | |
| 108 | async createFileSnapshot(message: string): Promise<string> { |
| 109 | const repo = this.shadowGitRepository; |
no outgoing calls
no test coverage detected