CloneAndProcessCommand command = this.command.createNewCommand();
command.setProcessor(processor);
try {
command.checkout();
} catch (IOException | GitAPIException e) {
throw new ProcessingException(e);
} catch (InternalRuntimeException e) {
throw new ProcessingException(e.getCause());
}
}