[JGit] History details [message #538628] |
Tue, 08 June 2010 05:06  |
Eclipse User |
|
|
|
Hi,
I'm trying to receive a details of commit about the changes (whether a files modified, added or deleted).
I've got a revisions list:
RevWalk currentWalk = new RevWalk(repo);
try {
currentWalk.markStart(currentWalk.parseCommit(headId));
} catch (IOException e) {
throw new RuntimeException("Unparseable commit.", e);
}
for (RevCommit commit : currentWalk) {
//..
}
But I'm unable to find a detail about the files deleted, added or modified.
I saw these details in Eclipse GIT history view so I assume this functionality could be implemented with JGit.
Any help appreciated.
Thank you.
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.08379 seconds