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.revwalk |
Walking revision graphs (commit history).
|
org.eclipse.jgit.treewalk.filter |
Filters for use in tree walking.
|
Modifier and Type | Field and Description |
---|---|
private java.util.List<PathFilter> |
LogCommand.pathFilters |
Modifier and Type | Field and Description |
---|---|
private PathFilter |
BlameGenerator.resultPath |
(package private) PathFilter |
Candidate.sourcePath
Path of the candidate file in
Candidate.sourceCommit . |
Modifier and Type | Method and Description |
---|---|
(package private) Candidate |
Candidate.create(Repository repo,
RevCommit commit,
PathFilter path) |
(package private) Candidate |
Candidate.ReverseCandidate.create(Repository repo,
RevCommit commit,
PathFilter path) |
private boolean |
BlameGenerator.find(RevCommit commit,
PathFilter path) |
private DiffEntry |
BlameGenerator.findRename(RevCommit parent,
RevCommit commit,
PathFilter path) |
Constructor and Description |
---|
BlobCandidate(Repository repo,
java.lang.String name,
PathFilter path) |
Candidate(Repository repo,
RevCommit commit,
PathFilter path) |
HeadCandidate(Repository repo,
PathFilter path,
java.util.List<RevCommit> parents) |
ReverseCandidate(Repository repo,
ReverseWalk.ReverseCommit commit,
PathFilter path) |
Modifier and Type | Field and Description |
---|---|
private PathFilter |
FollowFilter.path |
Constructor and Description |
---|
FollowFilter(PathFilter path,
DiffConfig cfg) |
Modifier and Type | Field and Description |
---|---|
private PathFilter |
PathFilterGroup.Single.path |
Modifier and Type | Method and Description |
---|---|
PathFilter |
PathFilter.clone()
Clone this tree filter, including its parameters.
|
static PathFilter |
PathFilter.create(java.lang.String path)
Create a new tree filter for a user supplied path.
|
Modifier and Type | Method and Description |
---|---|
private static TreeFilter |
PathFilterGroup.create(PathFilter[] p) |
Modifier and Type | Method and Description |
---|---|
static TreeFilter |
PathFilterGroup.create(java.util.Collection<PathFilter> paths)
Create a collection of path filters.
|
Constructor and Description |
---|
Group(PathFilter[] pathFilters) |
Single(PathFilter p) |