Write the current index to a new commit on HEAD.
(options: GitCommitOptions)
| 246 | rm(options: GitRmOptions): Promise<void>; |
| 247 | /** Write the current index to a new commit on HEAD. */ |
| 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. */ |
no outgoing calls