rebase method

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

Rebases the repo, options should be supplied as an array of string parameters supported by the git rebase command

Implementation

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