Fetch and merge in one step.
(options?: GitPullOptions)
| 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`). */ |
| 284 | merge(options: GitMergeOptions): Promise<MergeResult>; |
| 285 | /** Add a named remote pointing at a URL. */ |