Mercurial > hg4j
diff src/org/tmatesoft/hg/core/HgRepoFacade.java @ 660:4fd317a2fecf
Pull: phase1 get remote changes and add local revisions
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Tue, 09 Jul 2013 21:46:45 +0200 |
parents | 12a4f60ea972 |
children | 7743a9c10bfa |
line wrap: on
line diff
--- a/src/org/tmatesoft/hg/core/HgRepoFacade.java Thu Jul 04 21:09:33 2013 +0200 +++ b/src/org/tmatesoft/hg/core/HgRepoFacade.java Tue Jul 09 21:46:45 2013 +0200 @@ -169,4 +169,8 @@ public HgPushCommand createPushCommand() { return new HgPushCommand(repo); } + + public HgPullCommand createPullCommand() { + return new HgPullCommand(repo); + } }