Mercurial > hg4j
diff src/org/tmatesoft/hg/repo/HgRemoteRepository.java @ 184:ec1820f64d2b
Complete incoming cmdline client, with both lite (revisions) and complete (full changeset) information dump
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Wed, 13 Apr 2011 19:09:10 +0200 |
parents | cd3371670f0b |
children | 44a34baabea0 |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/repo/HgRemoteRepository.java Wed Apr 13 14:15:13 2011 +0200 +++ b/src/org/tmatesoft/hg/repo/HgRemoteRepository.java Wed Apr 13 19:09:10 2011 +0200 @@ -301,7 +301,8 @@ } } - // WireProtocol wiki: roots = a list of the latest nodes on every service side changeset branch that both the client and server know about. + // WireProtocol wiki: roots = a list of the latest nodes on every service side changeset branch that both the client and server know about. + // perhaps, shall be named 'changegroup' public HgBundle getChanges(List<Nodeid> roots) throws HgException { StringBuilder sb = new StringBuilder(20 + roots.size() * 41); sb.append("roots="); @@ -385,6 +386,7 @@ end = to; } } + public static final class RemoteBranch { public final Nodeid head, root, p1, p2;