(message: string)
| 1158 | } |
| 1159 | |
| 1160 | async commit(message: string) { |
| 1161 | console.log(`[git] Commit "${message}"`); |
| 1162 | return git.commit({ ...this._baseOpts, message }); |
| 1163 | } |
| 1164 | |
| 1165 | /** |
| 1166 | * Check to see whether remote is different than local. This is here because |
no test coverage detected