Push local refs to a remote.
(options?: GitPushOptions)
| 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. */ |
| 282 | pull(options?: GitPullOptions): Promise<void>; |
| 283 | /** Merge a ref into the current branch (or `ours`). */ |
no outgoing calls