(message: string, changeTree: { parentSha?: string; sha: string })
| 1526 | } |
| 1527 | |
| 1528 | commit(message: string, changeTree: { parentSha?: string; sha: string }) { |
| 1529 | const parents = changeTree.parentSha ? [changeTree.parentSha] : []; |
| 1530 | return this.createCommit(message, changeTree.sha, parents); |
| 1531 | } |
| 1532 | |
| 1533 | async createCommit( |
| 1534 | message: string, |
no test coverage detected