2

我正在尝试使用 JGit 显示文件更改历史记录。我设法获得了提交消息的历史记录。但是无法获得与每个提交相关的更改(例如 git log -p),基本上我需要检查更改是什么...(例如 + , - 在 log 命令中)

public void test() {

    try {
        File gitWorkDir = new File("/home/test/GITTEST/");
        Git git = null;
        git = Git.open(gitWorkDir);
        Repository repo = git.getRepository();
        LogCommand log = git.log();
        log.setMaxCount(2);
        Iterable<RevCommit> logMsgs = log.call();
        for (RevCommit commit : logMsgs) {
            System.out.println("----------------------------------------");
            System.out.println(commit);
            System.out.println(commit.getAuthorIdent().getName());
            System.out.println(commit.getAuthorIdent().getWhen());
            System.out.println(" ---- " + commit.getFullMessage());
            System.out.println("----------------------------------------");
            RevTree tree = commit.getTree();

TreeWalk treeWalk = new TreeWalk(repo);
treeWalk.addTree(tree);
treeWalk.setRecursive(true);
treeWalk.setFilter(TreeFilter.ANY_DIFF);

//treeWalk.setFilter(PathFilter.create("."));
if (!treeWalk.next()) 
{
  System.out.println("Nothing found!");
  return;
}
ObjectId objectId = treeWalk.getObjectId(0);
ObjectLoader loader = repo.open(objectId);
ByteArrayOutputStream out = new ByteArrayOutputStream();
loader.copyTo(out);
System.out.println("----" + out.toString());
        System.out.println(">>>>>>>>>>>>>>>>>>>>>>>>>>>>----------------------------------------");    
        }
    } catch (Exception e) {
        System.out.println("no head exception : " + e);
    }
}
4

2 回答 2

2

使用 DiffFormatter http://codesnippetx.blogspot.com/解决了以下问题

于 2013-10-30T08:52:29.167 回答
0

如果没有简单的方法通过纯 java 显示补丁LogCommand,您可以考虑使用org.eclipse.jgit.pgm.Log包装对 git 的调用的类。

作为包装器,它确实有-p选项。

于 2013-10-28T07:45:37.080 回答