(ref: string = 'HEAD', filePath: string = '', forceUpdate: boolean = false)
| 66 | } |
| 67 | |
| 68 | getCommitList(ref: string = 'HEAD', filePath: string = '', forceUpdate: boolean = false) { |
| 69 | return CommitManager.getInstance(this._scheme, this._repo, ref, filePath).getList(forceUpdate); |
| 70 | } |
| 71 | |
| 72 | getCommitItem(ref: string, forceUpdate: boolean = false) { |
| 73 | return CommitManager.getInstance(this._scheme, this._repo, ref, '').getItem(forceUpdate); |
no test coverage detected