添加git推送窗口,显示待提交列表和查看文件差异

This commit is contained in:
xintaofei
2026-03-21 20:37:19 +08:00
parent 048b8a8480
commit d9032f1c82
18 changed files with 986 additions and 137 deletions

View File

@@ -661,6 +661,10 @@ export async function openStashWindow(folderId: number): Promise<void> {
return invoke("open_stash_window", { folderId })
}
export async function openPushWindow(folderId: number): Promise<void> {
return invoke("open_push_window", { folderId })
}
export async function gitStashPush(
path: string,
message?: string,