(opts: {
message: string;
author?: { name: string; email: string };
})
| 38 | } |
| 39 | |
| 40 | async commit(opts: { |
| 41 | message: string; |
| 42 | author?: { name: string; email: string }; |
| 43 | }) { |
| 44 | return this.git().commit(opts); |
| 45 | } |
| 46 | |
| 47 | async status() { |
| 48 | return this.git().status(); |
no test coverage detected