Unstage paths from the index.
(options: GitRmOptions)
| 244 | add(options: GitAddOptions): Promise<void>; |
| 245 | /** Unstage paths from the index. */ |
| 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. */ |
no outgoing calls