(options?: string[])
| 255 | } |
| 256 | |
| 257 | async push(options?: string[]) { |
| 258 | return this.git.push(options); |
| 259 | } |
| 260 | |
| 261 | async reset(options: string[], mode: ResetMode = ResetMode.HARD) { |
| 262 | return this.git.reset(mode, options); |
no outgoing calls
no test coverage detected