0

jgitでgitリポジトリブラウザを作成したいのですが。しかし、ファイルの最終変更日と最終コミットメッセージを取得する方法がわかりません。ブラウザの現在のコードは次のとおりです。

File directory = new File("/Users/sdorra/.scm/repositories/git/scm-git");
Repository repository =
  RepositoryCache.open(RepositoryCache.FileKey.lenient(directory,
    FS.DETECTED), true);

try
{
  ObjectId revId = repository.resolve(Constants.HEAD);
  DirCache cache = new DirCache(directory, FS.DETECTED);
  TreeWalk treeWalk = new TreeWalk(repository);

  treeWalk.addTree(new RevWalk(repository).parseTree(revId));
  treeWalk.addTree(new DirCacheIterator(cache));

  while (treeWalk.next())
  {
    System.out.println("---------------------------");
    System.out.append("name: ").println(treeWalk.getNameString());
    System.out.append("path: ").println(treeWalk.getPathString());

    ObjectLoader loader = repository.open(treeWalk.getObjectId(0));

    System.out.append("directory: ").println(loader.getType()
                      == Constants.OBJ_TREE);
    System.out.append("size: ").println(loader.getSize());
    // ???
    System.out.append("last modified: ").println("???");
    System.out.append("message: ").println("???");
  }
}
finally
{
  if (repository != null)
  {
    repository.close();
  }
}

ファイルの最後のコミットを取得することは可能ですか?

注:私のgitリポジトリは、作業コピーのないベアリポジトリです。

4

1 に答える 1

1

低レベルのJGitAPIを使用していますが、org.eclipse.jgit.apiパッケージを介してLogCommandを使用してみませんか?次に、addPath(...)、call()..を使用します。

その後、指定されたパスのRevCommitのリストを取得する必要があります。

于 2011-06-19T12:56:51.277 に答える