Uses of Class
org.eclipse.jgit.revwalk.RevCommit
-
Packages that use RevCommit Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.blame Computing blame/annotate information of files.org.eclipse.jgit.gitrepo org.eclipse.jgit.internal.revwalk 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.notes Git notes processing (for commits, etc).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.org.eclipse.jgit.util Utility classes. -
-
Uses of RevCommit in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return RevCommit Modifier and Type Method Description RevCommitCommitCommand. call()RevCommitRevertCommand. call()RevCommitStashCreateCommand. call()RevCommitRebaseResult. getCurrentCommit()Get the current commit if status isRebaseResult.Status.STOPPED, otherwisenullRevCommitCherryPickResult. getNewHead()Get the new head after this cherry-pickRevCommitRebaseCommand. tryFastForward(RevCommit newCommit)Check if we can fast-forward and returns the new head if it is possibleMethods in org.eclipse.jgit.api that return types with arguments of type RevCommit Modifier and Type Method Description Iterable<RevCommit>LogCommand. call()Collection<RevCommit>StashListCommand. call()Methods in org.eclipse.jgit.api with parameters of type RevCommit Modifier and Type Method Description CheckoutCommandCheckoutCommand. setStartPoint(RevCommit startCommit)Set the commit that should be checked out.CreateBranchCommandCreateBranchCommand. setStartPoint(RevCommit startPoint)Set the start pointRebaseCommandRebaseCommand. setUpstream(RevCommit upstream)Set upstreamRevCommitRevCommitRebaseCommand. tryFastForward(RevCommit newCommit)Check if we can fast-forward and returns the new head if it is possibleConstructors in org.eclipse.jgit.api with parameters of type RevCommit Constructor Description CherryPickResult(RevCommit newHead, List<Ref> cherryPickedRefs)Constructor for CherryPickResult -
Uses of RevCommit in org.eclipse.jgit.blame
Methods in org.eclipse.jgit.blame that return RevCommit Modifier and Type Method Description RevCommitBlameGenerator. getSourceCommit()Get the revision blamed for the current region.RevCommitBlameResult. getSourceCommit(int idx)Get the commit that provided the specified line of the result. -
Uses of RevCommit in org.eclipse.jgit.gitrepo
Methods in org.eclipse.jgit.gitrepo that return RevCommit Modifier and Type Method Description RevCommitRepoCommand. call() -
Uses of RevCommit in org.eclipse.jgit.internal.revwalk
Methods in org.eclipse.jgit.internal.revwalk that return types with arguments of type RevCommit Modifier and Type Method Description Optional<RevCommit>BitmappedReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check all targets are reachable from the starters.Optional<RevCommit>PedestrianReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Methods in org.eclipse.jgit.internal.revwalk with parameters of type RevCommit Modifier and Type Method Description booleanAddToBitmapFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanAddToBitmapWithCacheFilter. include(RevWalk rw, RevCommit c)Determine if the supplied commit should be included in results.booleanAddUnseenToBitmapFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.Method parameters in org.eclipse.jgit.internal.revwalk with type arguments of type RevCommit Modifier and Type Method Description Optional<RevCommit>BitmappedReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check all targets are reachable from the starters.Optional<RevCommit>BitmappedReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check all targets are reachable from the starters.Optional<RevCommit>PedestrianReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Optional<RevCommit>PedestrianReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters) -
Uses of RevCommit in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return RevCommit Modifier and Type Method Description RevCommitRepository. parseCommit(AnyObjectId id)Locate a reference to a commit and immediately parse its content.Methods in org.eclipse.jgit.lib with parameters of type RevCommit Modifier and Type Method Description voidTreeFormatter. append(String name, RevCommit commit)Add a link to a submodule commit, mode isFileMode.GITLINK. -
Uses of RevCommit in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as RevCommit Modifier and Type Field Description protected RevCommit[]Merger. sourceCommitsIfMerger.sourceObjects[i] is a commit, this is the commit.Methods in org.eclipse.jgit.merge that return RevCommit Modifier and Type Method Description protected RevCommitMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected RevCommitRecursiveMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected RevCommitRecursiveMerger. getBaseCommit(RevCommit a, RevCommit b, int callDepth)Get a single base commit for two given commits.Methods in org.eclipse.jgit.merge with parameters of type RevCommit Modifier and Type Method Description protected RevCommitMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected RevCommitRecursiveMerger. getBaseCommit(RevCommit a, RevCommit b)Return the merge base of two commits.protected RevCommitRecursiveMerger. getBaseCommit(RevCommit a, RevCommit b, int callDepth)Get a single base commit for two given commits.Method parameters in org.eclipse.jgit.merge with type arguments of type RevCommit Modifier and Type Method Description StringSquashMessageFormatter. format(List<RevCommit> squashedCommits, Ref target)Construct the squashed commit message. -
Uses of RevCommit in org.eclipse.jgit.notes
Methods in org.eclipse.jgit.notes with parameters of type RevCommit Modifier and Type Method Description static NoteMapNoteMap. read(ObjectReader reader, RevCommit commit)Load a collection of notes from a branch. -
Uses of RevCommit in org.eclipse.jgit.revplot
Subclasses of RevCommit in org.eclipse.jgit.revplot Modifier and Type Class Description classPlotCommit<L extends PlotLane>A commit reference to a commit in the DAG.Methods in org.eclipse.jgit.revplot that return RevCommit Modifier and Type Method Description protected RevCommitPlotWalk. createCommit(AnyObjectId id)Construct a new unparsed commit for the given object.RevCommitPlotWalk. next()Pop the next most recent commit. -
Uses of RevCommit in org.eclipse.jgit.revwalk
Classes in org.eclipse.jgit.revwalk with type parameters of type RevCommit Modifier and Type Class Description classRevCommitList<E extends RevCommit>An ordered list ofRevCommitsubclasses.Subclasses of RevCommit in org.eclipse.jgit.revwalk Modifier and Type Class Description static classDepthWalk.CommitRevCommit with a depth (in commits) from a root.Fields in org.eclipse.jgit.revwalk declared as RevCommit Modifier and Type Field Description protected RevCommit[]RevCommit. parentsAvoid accessing this field directly.Methods in org.eclipse.jgit.revwalk that return RevCommit Modifier and Type Method Description protected RevCommitDepthWalk.ObjectWalk. createCommit(AnyObjectId id)protected RevCommitDepthWalk.RevWalk. createCommit(AnyObjectId id)protected RevCommitRevWalk. createCommit(AnyObjectId id)Construct a new unparsed commit for the given object.RevCommitRevCommit. getParent(int nth)Get the nth parent from this commit's parent list.RevCommit[]RevCommit. getParents()Obtain an array of all parents (NOTE - THIS IS NOT A COPY).RevCommitRevWalk. lookupCommit(AnyObjectId id)Locate a reference to a commit without loading it.RevCommitDateRevQueue. next()RevCommitFIFORevQueue. next()RevCommitLIFORevQueue. next()RevCommitObjectWalk. next()Pop the next most recent commit.RevCommitRevWalk. next()Pop the next most recent commit.static RevCommitRevCommit. parse(byte[] raw)Parse a commit from its canonical format.static RevCommitRevCommit. parse(RevWalk rw, byte[] raw)Parse a commit from its canonical format.RevCommitRevWalk. parseCommit(AnyObjectId id)Locate a reference to a commit and immediately parse its content.RevCommitDateRevQueue. peek()Peek at the next commit, without removing it.Methods in org.eclipse.jgit.revwalk that return types with arguments of type RevCommit Modifier and Type Method Description default Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Collection<RevCommit> starters)Deprecated.Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check if all targets are reachable from thestartercommits.static List<RevCommit>RevWalkUtils. find(RevWalk walk, RevCommit start, RevCommit end)Find commits that are reachable fromstartuntil a commit that is reachable fromendis encountered.Iterator<RevCommit>RevWalk. iterator()Methods in org.eclipse.jgit.revwalk with parameters of type RevCommit Modifier and Type Method Description voidDateRevQueue. add(RevCommit c)Add a commit to the queue.voidFIFORevQueue. add(RevCommit c)Add a commit to the queue.voidLIFORevQueue. add(RevCommit c)Add a commit to the queue.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.voidRevCommitList. fillTo(RevCommit commitToLoad, int highMark)Ensures all commits until the given commit are loaded.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 parents.static List<Ref>RevWalkUtils. findBranchesReachableFrom(RevCommit commit, RevWalk revWalk, Collection<Ref> refs, ProgressMonitor monitor)Find the list of branches a given commit is reachable from when following parents.List<Ref>RevWalk. getMergedInto(RevCommit commit, Collection<Ref> refs)Determine the Refs into which a commit is merged.List<Ref>RevWalk. getMergedInto(RevCommit commit, Collection<Ref> refs, ProgressMonitor monitor)Determine the Refs into which a commit is merged.booleanTreeRevFilter. include(RevWalk walker, RevCommit c)Determine if the supplied commit should be included in results.booleanRevWalk. isMergedInto(RevCommit base, RevCommit tip)Determine if a commit is reachable from another commit.booleanRevWalk. isMergedIntoAll(RevCommit commit, Collection<Ref> refs)Determine if acommitis merged into all of the givenrefs.booleanRevWalk. isMergedIntoAny(RevCommit commit, Collection<Ref> refs)Determine if acommitis merged into any of the givenrefs.voidDepthWalk.RevWalk. markRoot(RevCommit c)Mark a root commit (i.e., one whose depth should be considered 0.)voidRevWalk. markStart(RevCommit c)Mark a commit to start graph traversal from.voidRevWalk. markUninteresting(RevCommit c)Mark a commit to not produce in the output.voidFIFORevQueue. unpop(RevCommit c)Insert the commit pointer at the front of the queue.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevCommit Modifier and Type Method Description default Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Collection<RevCommit> starters)Deprecated.Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check if all targets are reachable from thestartercommits.Optional<RevCommit>ReachabilityChecker. areAllReachable(Collection<RevCommit> targets, Stream<RevCommit> starters)Check if all targets are reachable from thestartercommits.voidRevWalk. markStart(Collection<RevCommit> list)Mark commits to start graph traversal from. -
Uses of RevCommit in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevCommit Modifier and Type Method Description booleanMaxCountRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanNotRevFilter. include(RevWalk walker, RevCommit c)Determine if the supplied commit should be included in results.booleanPatternMatchRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.abstract booleanRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanSkipRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.booleanSubStringRevFilter. include(RevWalk walker, RevCommit cmit)Determine if the supplied commit should be included in results.protected abstract CharSequencePatternMatchRevFilter. text(RevCommit cmit)Obtain the raw text to match against.protected abstract RawCharSequenceSubStringRevFilter. text(RevCommit cmit)Obtain the raw text to match against. -
Uses of RevCommit in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport with parameters of type RevCommit Modifier and Type Method Description voidBundleWriter. assume(RevCommit c)Assume a commit is available on the recipient's side. -
Uses of RevCommit in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util with parameters of type RevCommit Modifier and Type Method Description static AttributesLfsFactory. getAttributesForPath(Repository db, String path, RevCommit commit)Get attributes for given path and commit
-