gpt4 book ai didi

java - 在现有分支中从 java 运行 hg log 命令

转载 作者:行者123 更新时间:2023-12-02 11:04:33 25 4
gpt4 key购买 nike

我正在尝试使用 JavaHg 从 Java 运行一些 hg 命令。

我已经有一个现有的 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!

最佳答案

检查source code for Repository class 。您需要使用 Repository.open(RepositoryConfiguration, File) 而不是 Repository.create(RepositoryConfiguration, File),因此创建 repo 对象如下:

Repository repo = Repository.open(conf, new File("/Users/theodore/Work/proj1"));

关于java - 在现有分支中从 java 运行 hg log 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51079422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com