Stage paths into the index.
(options: GitAddOptions)
| 242 | status(options?: GitStatusOptions): Promise<StatusEntry[]>; |
| 243 | /** Stage paths into the index. */ |
| 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. */ |
no outgoing calls