call abstract method

Future<TaskResult> call(
  1. Iterable<RepoEntry> entries
)

Executes the task on all given entries.

While entries contains only the staged files, you can used all files in the repository.

Please note, that if you return TaskResult.modified, all given entries will be added to git again, unless one is partially staged. If you do modify files that are not listed in entries, you have to stage them yourself.

Implementation

Future<TaskResult> call(Iterable<RepoEntry> entries);