예제 #1
0
 @Override
 public List<Remote> remoteList(RemoteListRequest request) throws GitException {
   ensureExistenceRepoRootInWorkingDirectory();
   RemoteListCommand remoteListCommand = nativeGit.createRemoteListCommand();
   return remoteListCommand.setRemoteName(request.getRemote()).execute();
 }
예제 #2
0
 @Override
 public List<Remote> remoteList(RemoteListRequest request) throws GitException {
   RemoteListCommand remoteListCommand = nativeGit.createRemoteListCommand();
   return remoteListCommand.setRemoteName(request.getRemote()).execute();
 }