(ref, execaOptions)
| 284 | * @param {Object} [execaOpts] Options to pass to `execa`. |
| 285 | */ |
| 286 | export async function merge(ref, execaOptions) { |
| 287 | await execa("git", ["merge", "--no-ff", ref], execaOptions); |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * Merge a branch into the current one with `git merge --ff`. |
no outgoing calls
no test coverage detected
searching dependent graphs…