List local branches.
(options?: GitBranchListOptions)
| 266 | branchDelete(options: GitBranchDeleteOptions): Promise<void>; |
| 267 | /** List local branches. */ |
| 268 | branchList(options?: GitBranchListOptions): Promise<string[]>; |
| 269 | /** Create a lightweight tag. */ |
| 270 | tag(options: GitTagOptions): Promise<void>; |
| 271 | /** Delete a tag. */ |
no outgoing calls