Read a single commit by ref or oid.
(options: GitShowOptions)
| 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. */ |
| 254 | revParse(options: GitRevParseOptions): Promise<string>; |
| 255 | /** Find the repository root by walking up from `dir`. */ |