(&self, request: WorkspaceGitCreateBranchRequest)
| 556 | } |
| 557 | |
| 558 | async fn create_branch(&self, request: WorkspaceGitCreateBranchRequest) -> Result<()> { |
| 559 | self.post_unit( |
| 560 | "branches/create", |
| 561 | &CreateBranchReq { |
| 562 | name: &request.name, |
| 563 | base: &request.base, |
| 564 | }, |
| 565 | ) |
| 566 | .await |
| 567 | } |
| 568 | |
| 569 | async fn checkout( |
| 570 | &self, |
no test coverage detected