faster loading
Some checks failed
CI / check (push) Has been cancelled

This commit is contained in:
2026-06-23 08:52:05 +02:00
parent 73bfd2b86a
commit 43131915c0
9 changed files with 62 additions and 9 deletions

View File

@@ -40,6 +40,7 @@ const api = {
stage: (paths: string[]) => ipcRenderer.invoke('git:stage', paths),
unstage: (paths: string[]) => ipcRenderer.invoke('git:unstage', paths),
commit: (message: string) => ipcRenderer.invoke('git:commit', message),
push: (): Promise<{ ok: boolean; message: string }> => ipcRenderer.invoke('git:push'),
discard: (paths: string[]) => ipcRenderer.invoke('git:discard', paths),
},