Uses of Class
org.eclipse.jgit.revwalk.RevWalk
-
Packages that use RevWalk Package Description org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.revplot Building/rendering revision graphs.org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.revwalk.filter Filters for use in revision walking.org.eclipse.jgit.transport Transport (fetch/push) for different protocols. -
-
Uses of RevWalk in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type RevWalk Modifier and Type Method Description RefUpdate.ResultRefUpdate. delete(RevWalk walk)Delete the ref.voidBatchRefUpdate. execute(RevWalk walk, ProgressMonitor monitor)Execute this batch update.RefUpdate.ResultRefUpdate. update(RevWalk walk)Gracefully update the ref to the new value.voidObjectReader. walkAdviceBeginCommits(RevWalk walk, Collection<RevCommit> roots)Advice from aRevWalkthat a walk is starting from these roots. -
Uses of RevWalk in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as RevWalk Modifier and Type Field Description protected RevWalkMerger. walkA RevWalk for computing merge bases, or listing incoming commits. -
Uses of RevWalk in org.eclipse.jgit.revplot
Subclasses of RevWalk in org.eclipse.jgit.revplot Modifier and Type Class Description classPlotWalkSpecialized RevWalk for visualization of a commit graph.Methods in org.eclipse.jgit.revplot with parameters of type RevWalk Modifier and Type Method Description voidPlotCommitList. source(RevWalk w) -
Uses of RevWalk in org.eclipse.jgit.revwalk
Subclasses of RevWalk in org.eclipse.jgit.revwalk Modifier and Type Class Description static classDepthWalk.ObjectWalkSubclass of ObjectWalk that performs depth filtering.static classDepthWalk.RevWalkSubclass of RevWalk that performs depth filtering.classObjectWalkSpecialized subclass of RevWalk to include trees, blobs and tags.Methods in org.eclipse.jgit.revwalk that return RevWalk Modifier and Type Method Description RevWalkRevFlag. getRevWalk()Get the revision walk instance this flag was created from.Methods in org.eclipse.jgit.revwalk with parameters of type RevWalk Modifier and Type Method Description static intRevWalkUtils. count(RevWalk walk, RevCommit start, RevCommit end)Count the number of commits that are reachable fromstartuntil a commit that is reachable fromendis encountered.static List<RevCommit>RevWalkUtils. find(RevWalk walk, RevCommit start, RevCommit end)Find commits that are reachable fromstartuntil a commit that is reachable fromendis encountered.static List<Ref>RevWalkUtils. findBranchesReachableFrom(RevCommit commit, RevWalk revWalk, Collection<Ref> refs)Find the list of branches a given commit is reachable from when following parent.sbooleanTreeRevFilter. include(RevWalk walker, RevCommit c)static RevCommitRevCommit. parse(RevWalk rw, byte[] raw)Parse a commit from its canonical format.static RevTagRevTag. parse(RevWalk rw, byte[] raw)Parse an annotated tag from its canonical format.voidRevCommitList. source(RevWalk w)Set the revision walker this list populates itself from.Constructors in org.eclipse.jgit.revwalk with parameters of type RevWalk Constructor Description TreeRevFilter(RevWalk walker, TreeFilter t)Create aRevFilterfrom aTreeFilter. -
Uses of RevWalk in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevWalk Modifier and Type Method Description booleanMaxCountRevFilter. include(RevWalk walker, RevCommit cmit)booleanNotRevFilter. include(RevWalk walker, RevCommit c)booleanPatternMatchRevFilter. include(RevWalk walker, RevCommit cmit)abstract booleanRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanSkipRevFilter. include(RevWalk walker, RevCommit cmit)booleanSubStringRevFilter. include(RevWalk walker, RevCommit cmit) -
Uses of RevWalk in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport that return RevWalk Modifier and Type Method Description RevWalkBaseReceivePack. getRevWalk()RevWalkUploadPack. getRevWalk()Methods in org.eclipse.jgit.transport with parameters of type RevWalk Modifier and Type Method Description protected Set<ObjectId>AbstractAdvertiseRefsHook. getAdvertisedHaves(Repository repository, RevWalk revWalk)Get the additional haves to advertise.protected abstract Map<String,Ref>AbstractAdvertiseRefsHook. getAdvertisedRefs(Repository repository, RevWalk revWalk)Get the refs to advertise.protected voidRemoteRefUpdate. updateTrackingRef(RevWalk walk)Update locally stored tracking branch with the new object.voidReceiveCommand. updateType(RevWalk walk)Update the type of this command by checking for fast-forward.
-