我正在尝试使用JavaHg从Java运行一些hg命令。
我已经有一个汞工作目录。
:pwd
/Users/theodore/Work/proj1
:hg identify -b
PROJ1_FEATUREX_BRANCH
我想使用JavaHg连接到该工作目录并运行hg log命令。
这是我走了多远:
public static void main(String[] args) {
RepositoryConfiguration conf = new RepositoryConfiguration();
conf.setHgBin("/usr/local/bin/hg"); //Path to HG executable
Repository repo = Repository.create(conf, new File("/Users/theodore/Work/proj1"));
LogCommand log = LogCommand.on(repo);
List<Changeset> changesets = log.execute();
System.out.println(changesets);
for(int i=0;i<changesets.size();i++) {
Changeset cs = changesets.get(i);
System.out.println( cs.getUser());
System.out.println( cs.getMessage());
System.out.println( cs.getAddedFiles() );
System.out.println( cs.getModifiedFiles() );
}
repo.close();
}
但是,上面的代码每次都试图在该文件夹中创建一个新的存储库。
因此,它因以下错误而失败:
Exception in thread "main" java.lang.RuntimeException: abort: repository /Users/theodore-3428/eclipse-workspace/hgviewer/~/DISKS/Work/CODE/HG/sdplive already exists!
答案 0 :(得分:1)
检查source code for Repository class。您需要使用Repository.open(RepositoryConfiguration, File)
的{{1}} istead,因此请创建如下的repo对象:
Repository.create(RepositoryConfiguration, File)