import { git, IGitExecutionOptions } from '../core/git'; /** Merge the named branch into the current branch. */ export async function merge(repositoryPath: string, branch: string, options?: IGitExecutionOptions): Promise { await git(['merge', branch], repositoryPath, 'merge', options); }