Uses of Class
org.eclipse.jgit.revwalk.RevFlag
Packages that use RevFlag
Package
Description
Computing blame/annotate information of files.
Distributed file system based repository storage.
Walking revision graphs (commit history).
Filters for use in revision walking.
Transport (fetch/push) for different protocols.
-
Uses of RevFlag in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as RevFlagModifier and TypeFieldDescriptionprivate RevFlag
BlameGenerator.SEEN
Indicates the commit was put into the queue at least once.Methods in org.eclipse.jgit.blame that return RevFlagModifier and TypeMethodDescriptionAllocate a new RevFlag for use by the caller.Methods in org.eclipse.jgit.blame with parameters of type RevFlagModifier and TypeMethodDescription(package private) void
(package private) void
(package private) void
(package private) boolean
(package private) boolean
(package private) boolean
(package private) void
(package private) void
(package private) void
-
Uses of RevFlag in org.eclipse.jgit.internal.storage.dfs
Fields in org.eclipse.jgit.internal.storage.dfs declared as RevFlag -
Uses of RevFlag in org.eclipse.jgit.revwalk
Subclasses of RevFlag in org.eclipse.jgit.revwalkFields in org.eclipse.jgit.revwalk declared as RevFlagModifier and TypeFieldDescriptionprivate final RevFlag
DepthGenerator.DEEPEN_NOT
Commits reachable from commits that the client specified using --shallow-exclude.private final RevFlag
DepthWalk.ObjectWalk.DEEPEN_NOT
private final RevFlag
DepthWalk.RevWalk.DEEPEN_NOT
private final RevFlag
DepthGenerator.REINTERESTING
Commits which the normal framework has marked as UNINTERESTING, but which we now care about again.private final RevFlag
DepthWalk.ObjectWalk.REINTERESTING
private final RevFlag
DepthWalk.RevWalk.REINTERESTING
static final RevFlag
RevFlag.SEEN
Set on RevCommit instances added toRevWalk.pending
queue.static final RevFlag
RevFlag.UNINTERESTING
Uninteresting byRevWalk.markUninteresting(RevCommit)
.private final RevFlag
DepthGenerator.UNSHALLOW
Commits which used to be shallow in the client, but which are being extended as part of this fetch.private final RevFlag
DepthWalk.ObjectWalk.UNSHALLOW
private final RevFlag
DepthWalk.RevWalk.UNSHALLOW
Fields in org.eclipse.jgit.revwalk with type parameters of type RevFlagMethods in org.eclipse.jgit.revwalk that return RevFlagModifier and TypeMethodDescriptionDepthWalk.getDeepenNotFlag()
DepthWalk.ObjectWalk.getDeepenNotFlag()
DepthWalk.RevWalk.getDeepenNotFlag()
DepthWalk.getReinterestingFlag()
Get flag marking commits that are interesting again.DepthWalk.ObjectWalk.getReinterestingFlag()
DepthWalk.RevWalk.getReinterestingFlag()
DepthWalk.getUnshallowFlag()
Get flag marking commits that should become unshallow.DepthWalk.ObjectWalk.getUnshallowFlag()
DepthWalk.RevWalk.getUnshallowFlag()
Create a new flag for application use during walking.Methods in org.eclipse.jgit.revwalk that return types with arguments of type RevFlagMethods in org.eclipse.jgit.revwalk with parameters of type RevFlagModifier and TypeMethodDescriptionfinal void
Add a commit if it does not have a flag set yet, then set the flag.boolean
final void
Add a flag to this object.final void
AbstractRevQueue.addParents
(RevCommit c, RevFlag queueControl) Add a commit's parents if one does not have a flag set yet.void
Apply a flag to all commits matching the specified filter.void
Apply a flag to all commits matching the specified filter.void
Carry a RevFlag set on this commit to its parents.void
Automatically carry a flag from a child commit to its parents.void
Remove the given flag from all commits.void
Remove the given flag from all commits.void
RevWalk.disposeFlag
(RevFlag flag) Allow a flag to be recycled for a different use.final boolean
Test to see if the flag has been set on this object.int
Find the next commit that has the given flag set.int
RevCommitList.lastIndexOf
(RevFlag flag, int begin) Find the next commit that has the given flag set.final void
Remove a flag from this object.final void
RevWalk.resetRetain
(RevFlag... retainFlags) Resets internal state and allows this instance to be used again.final void
RevWalk.retainOnReset
(RevFlag flag) Preserve a RevFlag during allreset
methods.Method parameters in org.eclipse.jgit.revwalk with type arguments of type RevFlagModifier and TypeMethodDescriptionvoid
RevWalk.carry
(Collection<RevFlag> set) Automatically carry flags from a child commit to its parents.final void
RevWalk.retainOnReset
(Collection<RevFlag> flags) Preserve a set of RevFlags during allreset
methods.Constructor parameters in org.eclipse.jgit.revwalk with type arguments of type RevFlagModifierConstructorDescriptionCreate a set of flags, copied from an existing collection. -
Uses of RevFlag in org.eclipse.jgit.revwalk.filter
Methods in org.eclipse.jgit.revwalk.filter with parameters of type RevFlag -
Uses of RevFlag in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as RevFlagModifier and TypeFieldDescription(package private) final RevFlag
BasePackFetchConnection.ADVERTISED
Marks a commit listed in the advertised refs.(package private) final RevFlag
BasePackFetchConnection.COMMON
Marks a commit known to both sides of the connection.private final RevFlag
UploadPack.COMMON
Marked on objects inUploadPack.commonBase
.private final RevFlag
WalkFetchConnection.COMPLETE
Objects whose direct dependents we know we have (or will have).private final RevFlag
WalkFetchConnection.IN_WORK_QUEUE
Objects that have already enteredWalkFetchConnection.workQueue
.private final RevFlag
WalkFetchConnection.LOCALLY_SEEN
Commits that have already enteredWalkFetchConnection.localCommitQueue
.private final RevFlag
UploadPack.PEER_HAS
Marked on objects both we and the client have.(package private) final RevFlag
BasePackFetchConnection.REACHABLE
Marks an object as having all its dependencies.private final RevFlag
UploadPack.SATISFIED
Objects where we found a path from the want list to a common base.private final RevFlag
BasePackFetchConnection.STATE
LikeBasePackFetchConnection.COMMON
but means its also inBasePackFetchConnection.pckState
.private final RevFlag
UploadPack.WANT
Marked on objects the client has asked us to give them.