merge method

  1. @override
Future<SimpleProcessResult> merge({
  1. String? branch,
  2. List<String>? options = const [],
  3. bool? skipOnError,
  4. HandlerFunction? handlerFn,
  5. bool? showOutput,
})
inherited

branch

Implementation

@override
T merge(
    {String? branch,
    List<String>? options = const [],
    bool? skipOnError,
    handlerFn,
    bool? showOutput}) {
  if (branch != null) {
    options!.insert(0, branch);
  }
  return runner.run(
      args: ['merge', ...options!],
      showOutput: showOutput,
      handlerFn: handlerFn,
      skipOnError: skipOnError);
}