7
RevCommit有一個getCommitTime()
方法,但它返回並且int並且它沒有作者時間。我如何從RevCommit得到作者和提交日期?如何從JGit獲取作者日期和提交日期RevCommit
RevCommit有一個getCommitTime()
方法,但它返回並且int並且它沒有作者時間。我如何從RevCommit得到作者和提交日期?如何從JGit獲取作者日期和提交日期RevCommit
像這樣:
RevCommit commit = ...;
PersonIdent authorIdent = commit.getAuthorIdent();
Date authorDate = authorIdent.getWhen();
TimeZone authorTimeZone = authorIdent.getTimeZone();
PersonIdent committerIdent = commit.getCommitterIdent();
...
哇,比我想象的要簡單。根據我的經驗,JGit有時候並不是最直觀的。再次感謝! – Coder