( path: string, remote?: string | null, credentials?: GitCredentials | null, folderId?: number | null )
| 1286 | } |
| 1287 | |
| 1288 | export async function gitPush( |
| 1289 | path: string, |
| 1290 | remote?: string | null, |
| 1291 | credentials?: GitCredentials | null, |
| 1292 | folderId?: number | null |
| 1293 | ): Promise<GitPushResult> { |
| 1294 | return getTransport().call("git_push", { |
| 1295 | path, |
| 1296 | remote: remote ?? null, |
| 1297 | credentials: credentials ?? null, |
| 1298 | folderId: folderId ?? null, |
| 1299 | }) |
| 1300 | } |
| 1301 | |
| 1302 | export async function gitNewBranch( |
| 1303 | path: string, |
no test coverage detected