|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.eclipse.jgit.revwalk.RevWalkUtils
public final class RevWalkUtils
Utility methods for RevWalk.
| Method Summary | |
|---|---|
static int |
count(RevWalk walk,
RevCommit start,
RevCommit end)
Count the number of commits that are reachable from start
until a commit that is reachable from end is encountered. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static int count(RevWalk walk,
RevCommit start,
RevCommit end)
throws MissingObjectException,
IncorrectObjectTypeException,
java.io.IOException
start
until a commit that is reachable from end is encountered. In
other words, count the number of commits that are in start,
but not in end.
Note that this method calls RevWalk.reset() at the beginning.
Also note that the existing rev filter on the walk is left as-is, so be
sure to set the right rev filter before calling this method.
walk - the rev walk to usestart - the commit to start counting fromend - the commit where counting should end, or null if counting
should be done until there are no more commits
MissingObjectException
IncorrectObjectTypeException
java.io.IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||