(&self, request: WorkspaceGitCreateBranchRequest)
| 342 | } |
| 343 | |
| 344 | async fn create_branch(&self, request: WorkspaceGitCreateBranchRequest) -> Result<()> { |
| 345 | self.run_blocking_git(move |root| { |
| 346 | crate::git::create_branch(&root, &request.name, &request.base) |
| 347 | }) |
| 348 | .await |
| 349 | } |
| 350 | |
| 351 | async fn checkout( |
| 352 | &self, |
no test coverage detected