Uses of Class
org.eclipse.jgit.treewalk.TreeWalk
Packages that use TreeWalk
Package
Description
High-level API commands (the porcelain of JGit).
Support for reading .gitattributes.
Computing blame/annotate information of files.
Comparing file contents by computing diffs.
Reading and editing the directory cache (index).
Core API for repository, config, refs, object database.
Content and commit history merge algorithms.
Walking revision graphs (commit history).
Git submodule support.
Transport (fetch/push) for different protocols.
Walking and comparing directory/file trees (of commits, file system).
Filters for use in tree walking.
-
Uses of TreeWalk in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type TreeWalkModifier and TypeMethodDescriptionprivate voidCheckoutCommand.checkoutPathsFromCommit(TreeWalk treeWalk, DirCache dc, RevCommit commit) private voidCheckoutCommand.checkoutPathsFromIndex(TreeWalk treeWalk, DirCache dc) -
Uses of TreeWalk in org.eclipse.jgit.attributes
Fields in org.eclipse.jgit.attributes declared as TreeWalkMethods in org.eclipse.jgit.attributes with parameters of type TreeWalkModifier and TypeMethodDescriptionprivate static AttributesNodeAttributesHandler.attributesNode(TreeWalk treeWalk, WorkingTreeIterator workingTreeIterator, DirCacheIterator dirCacheIterator, CanonicalTreeParser otherTree) Get theAttributesNodefor the current entry.Constructors in org.eclipse.jgit.attributes with parameters of type TreeWalkModifierConstructorDescriptionAttributesHandler(TreeWalk treeWalk) Deprecated.AttributesHandler(TreeWalk treeWalk, Supplier<CanonicalTreeParser> attributesTree) Create anAttributesHandlerwith default rules as well as merged rules from global, info and worktree root attributes -
Uses of TreeWalk in org.eclipse.jgit.blame
Fields in org.eclipse.jgit.blame declared as TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.diff
Fields in org.eclipse.jgit.diff declared as TreeWalkMethods in org.eclipse.jgit.diff with parameters of type TreeWalkModifier and TypeMethodDescriptionConvert the TreeWalk into DiffEntry headers.Convert the TreeWalk into DiffEntry headers, depending onincludeTreesit will add tree objects into result or not.DiffEntry.scan(TreeWalk walk, boolean includeTrees, TreeFilter[] markTreeFilters) Convert the TreeWalk into DiffEntry headers, depending onincludeTreesit will add tree objects into result or not. -
Uses of TreeWalk in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.lfs.lib
Methods in org.eclipse.jgit.lfs.lib with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge with parameters of type TreeWalkModifier and TypeMethodDescriptionprotected booleanResolveMerger.mergeTreeWalk(TreeWalk treeWalk, boolean ignoreConflicts) Process the given TreeWalk's entries. -
Uses of TreeWalk in org.eclipse.jgit.pgm
Methods in org.eclipse.jgit.pgm with parameters of type TreeWalkModifier and TypeMethodDescriptionprivate booleanLsFiles.filterFileMode(TreeWalk tw, FileMode... modes) -
Uses of TreeWalk in org.eclipse.jgit.pgm.debug
Methods in org.eclipse.jgit.pgm.debug with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.revwalk
Fields in org.eclipse.jgit.revwalk declared as TreeWalkMethods in org.eclipse.jgit.revwalk with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.submodule
Fields in org.eclipse.jgit.submodule declared as TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.transport
Fields in org.eclipse.jgit.transport declared as TreeWalkMethods in org.eclipse.jgit.transport that return TreeWalkModifier and TypeMethodDescriptionprivate TreeWalkPushCertificateStore.newTreeWalk(String refName) Methods in org.eclipse.jgit.transport with parameters of type TreeWalk -
Uses of TreeWalk in org.eclipse.jgit.treewalk
Subclasses of TreeWalk in org.eclipse.jgit.treewalkModifier and TypeClassDescriptionclassSpecialized TreeWalk to detect directory-file (D/F) name conflicts.Fields in org.eclipse.jgit.treewalk declared as TreeWalkModifier and TypeFieldDescription(package private) TreeWalkWorkingTreeIterator.IteratorState.walkTreeWalk with a (supposedly) matching DirCacheIterator.Methods in org.eclipse.jgit.treewalk that return TreeWalkModifier and TypeMethodDescriptionstatic TreeWalkTreeWalk.forPath(ObjectReader reader, String path, AnyObjectId... trees) Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk.forPath(Repository db, String path, AnyObjectId... trees) Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk.forPath(Repository db, String path, RevTree tree) Open a tree walk and filter to exactly one path.static TreeWalkTreeWalk.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 TypeMethodDescriptionvoidWorkingTreeIterator.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 TypeMethodDescriptionintTest the filters against the walk.booleanbooleanbooleanDetermine if the current entry is interesting to report.booleanDetermine if the current entry is interesting to report.booleanDetermine if the current entry is interesting to report.booleanDetermine if the current entry is interesting to report.booleanbooleanbooleanDetermine if the current entry is interesting to report.booleanbooleanbooleanDetermine if the current entry is interesting to report.booleanDetermine if the current entry is interesting to report.booleanbooleanabstract booleanDetermine if the current entry is interesting to report.booleanWhether the path length of this filter matches the length of the current path of the supplied TreeWalk.intAndTreeFilter.Binary.matchFilter(TreeWalk walker) intAndTreeFilter.List.matchFilter(TreeWalk walker) intNotTreeFilter.matchFilter(TreeWalk walker) Determine if the current entry is a parent, a match, or no match.intOrTreeFilter.Binary.matchFilter(TreeWalk walker) intOrTreeFilter.List.matchFilter(TreeWalk walker) intPathFilter.matchFilter(TreeWalk walker) Determine if the current entry is a parent, a match, or no match.intPathSuffixFilter.matchFilter(TreeWalk walker) intTreeFilter.matchFilter(TreeWalk walker) Determine if the current entry is a parent, a match, or no match.private WorkingTreeIteratorIndexDiffFilter.workingTree(TreeWalk tw)
AttributesHandler(TreeWalk, Supplier)instead