Mercurial > hg4j
comparison cmdline/org/tmatesoft/hg/console/Outgoing.java @ 215:41a778e3fd31
Issue 5: Facilities for progress and cancellation. More specific exceptions. Exceptions from callbacks as RuntimeException
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 17 May 2011 00:56:54 +0200 |
parents | 63c9fed4369e |
children | 45dc79e545f5 |
comparison
equal
deleted
inserted
replaced
214:4252faa556cd | 215:41a778e3fd31 |
---|---|
50 // | 50 // |
51 HgOutgoingCommand cmd = hgRepo.createOutgoingCommand(); | 51 HgOutgoingCommand cmd = hgRepo.createOutgoingCommand(); |
52 cmd.against(hgRemote); | 52 cmd.against(hgRemote); |
53 | 53 |
54 // find all local children of commonKnown | 54 // find all local children of commonKnown |
55 List<Nodeid> result = cmd.executeLite(null); | 55 List<Nodeid> result = cmd.executeLite(); |
56 dump("Lite", result); | 56 dump("Lite", result); |
57 // | 57 // |
58 // | 58 // |
59 System.out.println("Full"); | 59 System.out.println("Full"); |
60 // show all, starting from next to common | 60 // show all, starting from next to common |