Uses of Class
org.eclipse.jgit.treewalk.TreeWalk
Packages that use TreeWalk
Package
Description
Support for reading .gitattributes.
Comparing file contents by computing diffs.
Content and commit history merge algorithms.
Walking revision graphs (commit history).
Walking and comparing directory/file trees (of commits, file system).
Filters for use in tree walking.
-
Uses of TreeWalk in org.eclipse.jgit.attributes
Constructors in org.eclipse.jgit.attributes with parameters of type TreeWalkModifierConstructorDescriptionAttributesHandler
(TreeWalk treeWalk) Deprecated.AttributesHandler
(TreeWalk treeWalk, Supplier<CanonicalTreeParser> attributesTree) Create anAttributesHandler
with default rules as well as merged rules from global, info and worktree root attributes -
Uses of TreeWalk in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type TreeWalkModifier and TypeMethodDescriptionConvert the TreeWalk into DiffEntry headers.Convert the TreeWalk into DiffEntry headers, depending onincludeTrees
it will add tree objects into result or not.DiffEntry.scan
(TreeWalk walk, boolean includeTrees, TreeFilter[] markTreeFilters) Convert the TreeWalk into DiffEntry headers, depending onincludeTrees
it will add tree objects into result or not. -
Uses of TreeWalk in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge with parameters of type TreeWalkModifier and TypeMethodDescriptionprotected boolean
ResolveMerger.mergeTreeWalk
(TreeWalk treeWalk, boolean ignoreConflicts) Process the given TreeWalk's entries. -
Uses of TreeWalk in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.treewalk
Subclasses of TreeWalk in org.eclipse.jgit.treewalkModifier and TypeClassDescriptionclass
Specialized TreeWalk to detect directory-file (D/F) name conflicts.Methods in org.eclipse.jgit.treewalk that return TreeWalkModifier and TypeMethodDescriptionstatic TreeWalk
TreeWalk.forPath
(ObjectReader reader, String path, AnyObjectId... trees) Open a tree walk and filter to exactly one path.static TreeWalk
TreeWalk.forPath
(Repository db, String path, AnyObjectId... trees) Open a tree walk and filter to exactly one path.static TreeWalk
TreeWalk.forPath
(Repository db, String path, RevTree tree) Open a tree walk and filter to exactly one path.static TreeWalk
TreeWalk.forPath
(Repository repo, ObjectReader reader, String path, AnyObjectId... trees) Open a tree walk and filter to exactly one path.Methods in org.eclipse.jgit.treewalk with parameters of type TreeWalkModifier and TypeMethodDescriptionvoid
WorkingTreeIterator.setDirCacheIterator
(TreeWalk walk, int treeId) Define the matchingDirCacheIterator
, to optimize ObjectIds. -
Uses of TreeWalk in org.eclipse.jgit.treewalk.filter
Methods in org.eclipse.jgit.treewalk.filter with parameters of type TreeWalkModifier and TypeMethodDescriptionint
Test the filters against the walk.boolean
boolean
boolean
boolean
boolean
boolean
boolean
abstract boolean
Determine if the current entry is interesting to report.boolean
Whether the path length of this filter matches the length of the current path of the supplied TreeWalk.int
NotTreeFilter.matchFilter
(TreeWalk walker) int
PathFilter.matchFilter
(TreeWalk walker) int
PathSuffixFilter.matchFilter
(TreeWalk walker) int
TreeFilter.matchFilter
(TreeWalk walker) Determine if the current entry is a parent, a match, or no match.
AttributesHandler(TreeWalk, Supplier)
instead