Shallow-clone a remote into the bound workspace.
(options: GitCloneOptions)
| 232 | export interface GitClient { |
| 233 | /** Shallow-clone a remote into the bound workspace. */ |
| 234 | clone(options: GitCloneOptions): Promise<void>; |
| 235 | /** Unified diff between a ref (default HEAD) and the working tree. */ |
| 236 | diff(options?: GitDiffOptions): Promise<string>; |
| 237 | /** Per-file change summary backing `--stat` / `--name-only` / `--name-status`. */ |
no outgoing calls
no test coverage detected