(message: string, changeTree: { parentSha?: string; sha: string })
| 1500 | } |
| 1501 | |
| 1502 | commit(message: string, changeTree: { parentSha?: string; sha: string }) { |
| 1503 | const parents = changeTree.parentSha ? [changeTree.parentSha] : []; |
| 1504 | return this.createCommit(message, changeTree.sha, parents); |
| 1505 | } |
| 1506 | |
| 1507 | async createCommit( |
| 1508 | message: string, |
no test coverage detected