(branch, create, execaOptions)
| 132 | * @param {Object} [execaOpts] Options to pass to `execa`. |
| 133 | */ |
| 134 | export async function gitCheckout(branch, create, execaOptions) { |
| 135 | await execa("git", create ? ["checkout", "-b", branch] : ["checkout", branch], execaOptions); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Fetch current git repository. |
no outgoing calls
searching dependent graphs…