Snippets |
|
|
|
Reference |
|
Advanced Topics |
Snippets
Finding children of a commit
PlotWalk revWalk = new PlotWalk(repo());
ObjectId rootId = (branch==null)?repo().resolve(HEAD):branch.getObjectId();
RevCommit root = revWalk.parseCommit(rootId);
revWalk.markStart(root);
PlotCommitList<PlotLane> plotCommitList = new PlotCommitList<PlotLane>();
plotCommitList.source(revWalk);
plotCommitList.fillTo(Integer.MAX_VALUE);
return revWalk;
Snippet Collection
There is a collection of ready-to-run JGit code snippets available at
https://github.com/centic9/jgit-cookbook
|
|
|
Reference |
|
Advanced Topics |