(opts?: { depth?: number; ref?: string })
| 49 | } |
| 50 | |
| 51 | async log(opts?: { depth?: number; ref?: string }) { |
| 52 | return this.git().log(opts); |
| 53 | } |
| 54 | |
| 55 | async branch(opts?: { name?: string; list?: boolean; delete?: string }) { |
| 56 | return this.git().branch(opts); |