(ref: string = 'HEAD', filePath: string = '')
| 74 | } |
| 75 | |
| 76 | loadMoreCommits(ref: string = 'HEAD', filePath: string = '') { |
| 77 | return CommitManager.getInstance(this._scheme, this._repo, ref, filePath).loadMore(); |
| 78 | } |
| 79 | |
| 80 | hasMoreCommits(ref: string = 'HEAD', filePath: string = '') { |
| 81 | return CommitManager.getInstance(this._scheme, this._repo, ref, filePath).hasMore(); |
no test coverage detected