Uses of Class
org.eclipse.jgit.revwalk.RevTree
-
Packages that use RevTree Package Description org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.junit org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.merge Content and commit history merge algorithms.org.eclipse.jgit.notes Git notes processing (for commits, etc).org.eclipse.jgit.pgm.opt org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system). -
-
Uses of RevTree in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type RevTree Modifier and Type Method Description voidDiffFormatter. format(RevTree a, RevTree b)Format the differences between two trees.List<DiffEntry>DiffFormatter. scan(RevTree a, RevTree b)Determine the differences between two trees. -
Uses of RevTree in org.eclipse.jgit.junit
Methods in org.eclipse.jgit.junit that return RevTree Modifier and Type Method Description RevTreeTestRepository. tree(DirCacheEntry... entries)Construct a tree from a specific listing of file entries.Methods in org.eclipse.jgit.junit with parameters of type RevTree Modifier and Type Method Description RevCommitTestRepository. commit(int secDelta, RevTree tree, RevCommit... parents)Create a new commit.RevCommitTestRepository. commit(RevTree tree, RevCommit... parents)Create a new commit.RevObjectTestRepository. get(RevTree tree, String path)Lookup an entry stored in a tree, failing if not present.ObjectIdTestRepository. unparsedCommit(int secDelta, RevTree tree, ObjectId... parents)Create a new, unparsed commit. -
Uses of RevTree in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type RevTree Modifier and Type Method Description voidTreeFormatter. append(String name, RevTree tree)Add a subtree, mode isFileMode.TREE. -
Uses of RevTree in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as RevTree Modifier and Type Field Description protected RevTree[]Merger. sourceTreesThe trees matching every entry inMerger.sourceObjects.Methods in org.eclipse.jgit.merge with parameters of type RevTree Modifier and Type Method Description protected booleanResolveMerger. mergeTrees(AbstractTreeIterator baseTree, RevTree headTree, RevTree mergeTree, boolean ignoreConflicts)The resolve conflict way of three way merging -
Uses of RevTree in org.eclipse.jgit.notes
Methods in org.eclipse.jgit.notes with parameters of type RevTree Modifier and Type Method Description static NoteMapNoteMap. read(ObjectReader reader, RevTree tree)Load a collection of notes from a tree. -
Uses of RevTree in org.eclipse.jgit.pgm.opt
Constructor parameters in org.eclipse.jgit.pgm.opt with type arguments of type RevTree Constructor Description RevTreeHandler(org.kohsuke.args4j.CmdLineParser parser, org.kohsuke.args4j.OptionDef option, org.kohsuke.args4j.spi.Setter<? super RevTree> setter)Create a new handler for the command name. -
Uses of RevTree in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk that return RevTree Modifier and Type Method Description RevTreeRevCommit. getTree()Get a reference to this commit's tree.RevTreeRevWalk. lookupTree(AnyObjectId id)Locate a reference to a tree without loading it.RevTreeRevWalk. parseTree(AnyObjectId id)Locate a reference to a tree. -
Uses of RevTree in org.eclipse.jgit.treewalk
Methods in org.eclipse.jgit.treewalk with parameters of type RevTree Modifier and Type Method Description static TreeWalkTreeWalk. forPath(Repository db, String path, RevTree tree)Open a tree walk and filter to exactly one path.
-