final Context geogig = this.getCommandLocator(context);
PushOp command = geogig.command(PushOp.class);
if (refSpec != null) {
command.addRefSpec(refSpec);
}
try {
final TransferSummary dataPushed = command.setAll(pushAll).setRemote(remoteName).call();
context.setResponseContent(new CommandResponse() {