Walk commits from `ref` (default HEAD) backwards through history.
(options?: GitLogOptions)
| 248 | commit(options: GitCommitOptions): Promise<CommitResult>; |
| 249 | /** Walk commits from `ref` (default HEAD) backwards through history. */ |
| 250 | log(options?: GitLogOptions): Promise<CommitView[]>; |
| 251 | /** Read a single commit by ref or oid. */ |
| 252 | show(options: GitShowOptions): Promise<CommitView>; |
| 253 | /** Resolve a ref to its SHA-1 oid. */ |
no outgoing calls