feat: add git stash management
Add a Stashes dialog with create, apply, pop, and drop actions Include untracked files automatically when stashing Show file counts for current changes and stash entries
This commit is contained in:
@@ -30,6 +30,12 @@ export const createWebGitAPI = (): GitAPI => ({
|
||||
gitPush: gitApiHttp.gitPush,
|
||||
gitPull: gitApiHttp.gitPull,
|
||||
gitFetch: gitApiHttp.gitFetch,
|
||||
listGitStashes: gitApiHttp.listGitStashes,
|
||||
countGitStashFiles: gitApiHttp.countGitStashFiles,
|
||||
stashGitChanges: gitApiHttp.stashGitChanges,
|
||||
applyGitStash: gitApiHttp.applyGitStash,
|
||||
popGitStash: gitApiHttp.popGitStash,
|
||||
dropGitStash: gitApiHttp.dropGitStash,
|
||||
checkoutBranch: gitApiHttp.checkoutBranch,
|
||||
createBranch: gitApiHttp.createBranch,
|
||||
renameBranch: gitApiHttp.renameBranch,
|
||||
|
||||
Reference in New Issue
Block a user