refactor(branch-picker): fix popover corner radius, remove local branch delete, move new-branch to top

This commit is contained in:
xintaofei
2026-04-21 23:14:57 +08:00
parent 67c837901d
commit 08fb508736
17 changed files with 40 additions and 183 deletions

View File

@@ -648,14 +648,6 @@ export async function gitRebase(
return invoke("git_rebase", { path, branchName })
}
export async function gitDeleteBranch(
path: string,
branchName: string,
force = false
): Promise<string> {
return invoke("git_delete_branch", { path, branchName, force })
}
export async function gitListConflicts(path: string): Promise<string[]> {
return invoke("git_list_conflicts", { path })
}