RevCommit
getCommitTime()
メソッドがありますが、を返し、int
作成者の時間はありません。作成者とコミット日をから取得するにはどうすればよいRevCommit
ですか?
質問する
5870 次
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 に答える