(ref: string = 'HEAD', filePath: string = '')
| 78 | } |
| 79 | |
| 80 | hasMoreCommits(ref: string = 'HEAD', filePath: string = '') { |
| 81 | return CommitManager.getInstance(this._scheme, this._repo, ref, filePath).hasMore(); |
| 82 | } |
| 83 | |
| 84 | getCommitChangedFiles(ref: string, forceUpdate: boolean = false) { |
| 85 | return CommitManager.getInstance(this._scheme, this._repo, ref, '').getChangedFiles(forceUpdate); |
no test coverage detected