Move HEAD to a ref, or update working-tree paths to a ref.
(options: GitCheckoutOptions)
| 274 | tagList(options?: GitTagListOptions): Promise<string[]>; |
| 275 | /** Move HEAD to a ref, or update working-tree paths to a ref. */ |
| 276 | checkout(options: GitCheckoutOptions): Promise<void>; |
| 277 | /** Fetch refs from a remote. */ |
| 278 | fetch(options?: GitFetchOptions): Promise<FetchResult>; |
| 279 | /** Push local refs to a remote. */ |
no outgoing calls
no test coverage detected