Fetch refs from a remote.
(options?: GitFetchOptions)
| 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. */ |
| 280 | push(options?: GitPushOptions): Promise<PushResult>; |
| 281 | /** Fetch and merge in one step. */ |