Uses of Class
org.eclipse.jgit.revwalk.RevTree
-
Packages that use RevTree Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.internal.storage.pack Reading/writing Git pack files.org.eclipse.jgit.internal.storage.reftree 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 org.eclipse.jgit.pgm.opt org.eclipse.jgit.revwalk Walking revision graphs (commit history).org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system). -
-
Uses of RevTree in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return RevTree Modifier and Type Method Description private RevTree
ArchiveCommand. getTree(RevObject o)
Methods in org.eclipse.jgit.api with parameters of type RevTree Modifier and Type Method Description private void
StashApplyCommand. resetIndex(RevTree tree)
private void
StashApplyCommand. resetUntracked(RevTree tree)
-
Uses of RevTree in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type RevTree Modifier and Type Method Description void
DiffFormatter. format(RevTree a, RevTree b)
Format the differences between two trees.private AbstractTreeIterator
DiffFormatter. makeIteratorFromTreeOrNull(RevTree tree)
java.util.List<DiffEntry>
DiffFormatter. scan(RevTree a, RevTree b)
Determine the differences between two trees. -
Uses of RevTree in org.eclipse.jgit.internal.storage.pack
Constructor parameters in org.eclipse.jgit.internal.storage.pack with type arguments of type RevTree Constructor Description BaseSearch(ProgressMonitor countingMonitor, java.util.Set<RevTree> bases, ObjectIdOwnerMap<ObjectToPack> objects, java.util.List<ObjectToPack> edges, ObjectReader or)
-
Uses of RevTree in org.eclipse.jgit.internal.storage.reftree
Methods in org.eclipse.jgit.internal.storage.reftree that return RevTree Modifier and Type Method Description private static RevTree
Scanner. toTree(ObjectReader reader, AnyObjectId id)
Methods in org.eclipse.jgit.internal.storage.reftree with parameters of type RevTree Modifier and Type Method Description static RefTree
RefTree. read(ObjectReader reader, RevTree tree)
Load a reference tree. -
Uses of RevTree in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib with parameters of type RevTree Modifier and Type Method Description void
TreeFormatter. append(java.lang.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 private RevTree
ThreeWayMerger. baseTree
protected RevTree[]
Merger. sourceTrees
The trees matching every entry inMerger.sourceObjects
.Methods in org.eclipse.jgit.merge with parameters of type RevTree Modifier and Type Method Description protected boolean
ResolveMerger. 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 NoteMap
NoteMap. read(ObjectReader reader, RevTree tree)
Load a collection of notes from a tree. -
Uses of RevTree in org.eclipse.jgit.pgm
Methods in org.eclipse.jgit.pgm with parameters of type RevTree Modifier and Type Method Description private void
Show. show(RevTree obj)
-
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
Fields in org.eclipse.jgit.revwalk declared as RevTree Modifier and Type Field Description private RevTree
RevCommit. tree
Methods in org.eclipse.jgit.revwalk that return RevTree Modifier and Type Method Description RevTree
RevCommit. getTree()
Get a reference to this commit's tree.RevTree
RevWalk. lookupTree(AnyObjectId id)
Locate a reference to a tree without loading it.RevTree
RevWalk. parseTree(AnyObjectId id)
Locate a reference to a tree.Methods in org.eclipse.jgit.revwalk with parameters of type RevTree Modifier and Type Method Description private void
ObjectWalk. markTreeUninteresting(RevTree tree)
-
Uses of RevTree in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport with parameters of type RevTree Modifier and Type Method Description private void
WalkFetchConnection. markTreeComplete(RevTree 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 TreeWalk
TreeWalk. forPath(Repository db, java.lang.String path, RevTree tree)
Open a tree walk and filter to exactly one path.
-