Cherry-picks a commit onto the current branch.
Future<void> cherryPick(String commit, {String? workDir}) async { await _runGit(['cherry-pick', commit], workDir: workDir ?? defaultWorkDir); }