( path: string, message: string, files: string[], folderId?: number | null )
| 1618 | } |
| 1619 | |
| 1620 | export async function gitCommit( |
| 1621 | path: string, |
| 1622 | message: string, |
| 1623 | files: string[], |
| 1624 | folderId?: number | null |
| 1625 | ): Promise<GitCommitResult> { |
| 1626 | return getTransport().call("git_commit", { |
| 1627 | path, |
| 1628 | message, |
| 1629 | files, |
| 1630 | folderId: folderId ?? null, |
| 1631 | }) |
| 1632 | } |
| 1633 | |
| 1634 | export async function gitRollbackFile( |
| 1635 | path: string, |
no test coverage detected