Package | Description |
---|---|
org.eclipse.jgit.revwalk |
Walking revision graphs (commit history).
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
AbstractRevQueue |
private static class |
AbstractRevQueue.AlwaysEmptyQueue |
(package private) class |
BlockRevQueue |
(package private) class |
BoundaryGenerator |
private class |
BoundaryGenerator.InitialGenerator |
class |
DateRevQueue
A queue of commits sorted by commit time order.
|
(package private) class |
DelayRevQueue
Delays commits to be at least
PendingGenerator.OVER_SCAN late. |
(package private) class |
DepthGenerator
Only produce commits which are below a specified depth.
|
(package private) class |
EndGenerator |
class |
FIFORevQueue
A queue of commits in FIFO order.
|
(package private) class |
FixUninterestingGenerator
Filters out commits marked
RevWalk.UNINTERESTING . |
class |
LIFORevQueue
A queue of commits in LIFO order.
|
(package private) class |
MergeBaseGenerator
Computes the merge base(s) of the starting commits.
|
(package private) class |
PendingGenerator
Default (and first pass) RevCommit Generator implementation for RevWalk.
|
(package private) class |
RewriteGenerator
Replaces a RevCommit's parents until not colored with REWRITE.
|
(package private) class |
StartGenerator
Initial RevWalk generator that bootstraps a new walk.
|
(package private) class |
TopoSortGenerator
Sorts commits in topological order.
|
Modifier and Type | Field and Description |
---|---|
(package private) Generator |
BoundaryGenerator.g |
(package private) Generator |
RevWalk.pending |
private Generator |
FixUninterestingGenerator.pending |
private Generator |
DelayRevQueue.pending |
private Generator |
RewriteGenerator.source |
private Generator |
BoundaryGenerator.InitialGenerator.source |
Constructor and Description |
---|
BlockRevQueue(Generator s) |
BoundaryGenerator(RevWalk w,
Generator s) |
DateRevQueue(Generator s) |
DelayRevQueue(Generator g) |
DepthGenerator(DepthWalk w,
Generator s) |
FIFORevQueue(Generator s) |
FixUninterestingGenerator(Generator g) |
InitialGenerator(RevWalk w,
Generator s) |
LIFORevQueue(Generator s) |
RewriteGenerator(Generator s) |
TopoSortGenerator(Generator s)
Create a new sorter and completely spin the generator.
|