< prev index next >

vcs/src/main/java/org/openjdk/skara/vcs/ReadOnlyRepository.java

Print this page
@@ -82,10 +82,12 @@
      Repository copyTo(Path destination) throws IOException;
      String pullPath(String remote) throws IOException;
      String pushPath(String remote) throws IOException;
      boolean isValidRevisionRange(String expression) throws IOException;
      Optional<String> upstreamFor(Branch branch) throws IOException;
+     List<Reference> remoteBranches(String remote) throws IOException;
+     List<String> remotes() throws IOException;
  
      static Optional<ReadOnlyRepository> get(Path p) throws IOException {
          return Repository.get(p).map(r -> r);
      }
  
< prev index next >