增强git贮藏(stash)功能,支持可视化操作
This commit is contained in:
@@ -709,6 +709,14 @@ export interface GitRemote {
|
||||
url: string
|
||||
}
|
||||
|
||||
export interface GitStashEntry {
|
||||
index: number
|
||||
message: string
|
||||
branch: string
|
||||
date: string
|
||||
ref_name: string
|
||||
}
|
||||
|
||||
export type FileTreeNode =
|
||||
| { kind: "file"; name: string; path: string }
|
||||
| { kind: "dir"; name: string; path: string; children: FileTreeNode[] }
|
||||
|
||||
Reference in New Issue
Block a user