14

RevCommitgetCommitTime()メソッドがありますが、を返し、int作成者の時間はありません。作成者とコミット日をから取得するにはどうすればよいRevCommitですか?

4

1 に答える 1

27

そのようです:

RevCommit commit = ...;

PersonIdent authorIdent = commit.getAuthorIdent();
Date authorDate = authorIdent.getWhen();
TimeZone authorTimeZone = authorIdent.getTimeZone();

PersonIdent committerIdent = commit.getCommitterIdent();
...

APIドキュメントも参照してください。

于 2012-09-26T20:30:53.453 に答える