Package | Description |
---|---|
org.eclipse.jgit.blame |
Computing blame/annotate information of files.
|
org.eclipse.jgit.internal.storage.dfs |
Distributed file system based repository storage.
|
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.
|
Modifier and Type | Field and Description |
---|---|
private RevFlag |
BlameGenerator.SEEN
Indicates the commit was put into the queue at least once.
|
Modifier and Type | Method and Description |
---|---|
RevFlag |
BlameGenerator.newFlag(java.lang.String name)
Allocate a new RevFlag for use by the caller.
|
Modifier and Type | Method and Description |
---|---|
(package private) void |
Candidate.add(RevFlag flag) |
(package private) void |
Candidate.HeadCandidate.add(RevFlag flag) |
(package private) void |
Candidate.BlobCandidate.add(RevFlag flag) |
(package private) boolean |
Candidate.has(RevFlag flag) |
(package private) boolean |
Candidate.HeadCandidate.has(RevFlag flag) |
(package private) boolean |
Candidate.BlobCandidate.has(RevFlag flag) |
(package private) void |
Candidate.remove(RevFlag flag) |
(package private) void |
Candidate.HeadCandidate.remove(RevFlag flag) |
(package private) void |
Candidate.BlobCandidate.remove(RevFlag flag) |
Modifier and Type | Field and Description |
---|---|
private RevFlag |
DfsPackCompactor.added |
private RevFlag |
DfsPackCompactor.isBase |
Modifier and Type | Class and Description |
---|---|
(package private) static class |
RevFlag.StaticRevFlag |
Modifier and Type | Field and Description |
---|---|
private RevFlag |
DepthWalk.RevWalk.DEEPEN_NOT |
private RevFlag |
DepthWalk.ObjectWalk.DEEPEN_NOT |
private RevFlag |
DepthGenerator.DEEPEN_NOT
Commits reachable from commits that the client specified using --shallow-exclude.
|
private RevFlag |
DepthWalk.RevWalk.REINTERESTING |
private RevFlag |
DepthWalk.ObjectWalk.REINTERESTING |
private RevFlag |
DepthGenerator.REINTERESTING
Commits which the normal framework has marked as UNINTERESTING,
but which we now care about again.
|
static RevFlag |
RevFlag.SEEN
Set on RevCommit instances added to
RevWalk.pending queue. |
static RevFlag |
RevFlag.UNINTERESTING
Uninteresting by
RevWalk.markUninteresting(RevCommit) . |
private RevFlag |
DepthWalk.RevWalk.UNSHALLOW |
private RevFlag |
DepthWalk.ObjectWalk.UNSHALLOW |
private RevFlag |
DepthGenerator.UNSHALLOW
Commits which used to be shallow in the client, but which are
being extended as part of this fetch.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<RevFlag> |
RevFlagSet.active |
Modifier and Type | Method and Description |
---|---|
RevFlag |
DepthWalk.getDeepenNotFlag() |
RevFlag |
DepthWalk.RevWalk.getDeepenNotFlag() |
RevFlag |
DepthWalk.ObjectWalk.getDeepenNotFlag() |
RevFlag |
DepthWalk.getReinterestingFlag()
Get flag marking commits that are interesting again.
|
RevFlag |
DepthWalk.RevWalk.getReinterestingFlag() |
RevFlag |
DepthWalk.ObjectWalk.getReinterestingFlag() |
RevFlag |
DepthWalk.getUnshallowFlag()
Get flag marking commits that should become unshallow.
|
RevFlag |
DepthWalk.RevWalk.getUnshallowFlag() |
RevFlag |
DepthWalk.ObjectWalk.getUnshallowFlag() |
RevFlag |
RevWalk.newFlag(java.lang.String name)
Create a new flag for application use during walking.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator<RevFlag> |
RevFlagSet.iterator() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRevQueue.add(RevCommit c,
RevFlag queueControl)
Add a commit if it does not have a flag set yet, then set the flag.
|
boolean |
RevFlagSet.add(RevFlag flag) |
void |
RevObject.add(RevFlag flag)
Add a flag to this object.
|
void |
AbstractRevQueue.addParents(RevCommit c,
RevFlag queueControl)
Add a commit's parents if one does not have a flag set yet.
|
void |
RevCommitList.applyFlag(RevFilter matching,
RevFlag flag)
Apply a flag to all commits matching the specified filter.
|
void |
RevCommitList.applyFlag(RevFilter matching,
RevFlag flag,
int rangeBegin,
int rangeEnd)
Apply a flag to all commits matching the specified filter.
|
void |
RevWalk.carry(RevFlag flag)
Automatically carry a flag from a child commit to its parents.
|
void |
RevCommit.carry(RevFlag flag)
Carry a RevFlag set on this commit to its parents.
|
void |
RevCommitList.clearFlag(RevFlag flag)
Remove the given flag from all commits.
|
void |
RevCommitList.clearFlag(RevFlag flag,
int rangeBegin,
int rangeEnd)
Remove the given flag from all commits.
|
void |
RevWalk.disposeFlag(RevFlag flag)
Allow a flag to be recycled for a different use.
|
boolean |
RevObject.has(RevFlag flag)
Test to see if the flag has been set on this object.
|
int |
RevCommitList.indexOf(RevFlag flag,
int begin)
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.
|
void |
RevObject.remove(RevFlag flag)
Remove a flag from this object.
|
void |
RevWalk.resetRetain(RevFlag... retainFlags)
Resets internal state and allows this instance to be used again.
|
void |
RevWalk.retainOnReset(RevFlag flag)
Preserve a RevFlag during all
reset methods. |
Modifier and Type | Method and Description |
---|---|
void |
RevWalk.carry(java.util.Collection<RevFlag> set)
Automatically carry flags from a child commit to its parents.
|
void |
RevWalk.retainOnReset(java.util.Collection<RevFlag> flags)
Preserve a set of RevFlags during all
reset methods. |
Constructor and Description |
---|
RevFlagSet(java.util.Collection<RevFlag> s)
Create a set of flags, copied from an existing collection.
|
Modifier and Type | Method and Description |
---|---|
static RevFilter |
RevFlagFilter.has(RevFlag a)
Create a new filter that tests for a single flag.
|
static RevFilter |
RevFlagFilter.hasAll(RevFlag... a)
Create a new filter that tests all flags in a set.
|
static RevFilter |
RevFlagFilter.hasAny(RevFlag... a)
Create a new filter that tests for any flag in a set.
|
Modifier and Type | Field and Description |
---|---|
(package private) RevFlag |
BasePackFetchConnection.ADVERTISED
Marks a commit listed in the advertised refs.
|
private RevFlag |
UploadPack.COMMON
Marked on objects in
UploadPack.commonBase . |
(package private) RevFlag |
BasePackFetchConnection.COMMON
Marks a commit known to both sides of the connection.
|
private RevFlag |
WalkFetchConnection.COMPLETE
Objects whose direct dependents we know we have (or will have).
|
private RevFlag |
WalkFetchConnection.IN_WORK_QUEUE
Objects that have already entered
WalkFetchConnection.workQueue . |
private RevFlag |
WalkFetchConnection.LOCALLY_SEEN
Commits that have already entered
WalkFetchConnection.localCommitQueue . |
private RevFlag |
UploadPack.PEER_HAS
Marked on objects both we and the client have.
|
(package private) RevFlag |
BasePackFetchConnection.REACHABLE
Marks an object as having all its dependencies.
|
private RevFlag |
UploadPack.SATISFIED
Objects where we found a path from the want list to a common base.
|
private RevFlag |
BasePackFetchConnection.STATE
Like
BasePackFetchConnection.COMMON but means its also in BasePackFetchConnection.pckState . |
private RevFlag |
UploadPack.WANT
Marked on objects the client has asked us to give them.
|