Пример #1
0
 @Override
 public ShowFileContentResponse showFileContent(ShowFileContentRequest request)
     throws GitException {
   ShowFileContentCommand showCommand =
       nativeGit
           .createShowFileContentCommand()
           .withFile(request.getFile())
           .withVersion(request.getVersion());
   return showCommand.execute();
 }