raw method

  1. @override
Future<SimpleProcessResult> raw(
  1. List<String> args, {
  2. bool? skipOnError,
  3. HandlerFunction? handlerFn,
  4. bool? showOutput,
})
inherited

Execute any arbitrary array of commands supported by the underlying git binary. When the git process returns a non-zero signal on exit and it printed something to stderr, the commmand will be treated as an error, otherwise treated as a success.

Implementation

@override
T raw(List<String> args,
        {bool? skipOnError, HandlerFunction? handlerFn, bool? showOutput}) =>
    runner.run(
        args: args,
        showOutput: showOutput,
        handlerFn: handlerFn,
        skipOnError: skipOnError);