Uses of Class
org.eclipse.jgit.dircache.DirCache
-
Packages that use DirCache Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.dircache Reading and editing the directory cache (index).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.transport Transport (fetch/push) for different protocols. -
-
Uses of DirCache in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return DirCache Modifier and Type Method Description DirCacheAddCommand. call()DirCacheRmCommand. call()private DirCacheCommitCommand. createTemporaryIndex(ObjectId headId, DirCache index, RevWalk rw)Methods in org.eclipse.jgit.api with parameters of type DirCache Modifier and Type Method Description private voidCheckoutCommand. checkoutPathsFromCommit(TreeWalk treeWalk, DirCache dc, RevCommit commit, Checkout checkout)private voidCheckoutCommand. checkoutPathsFromIndex(TreeWalk treeWalk, DirCache dc, Checkout checkout)private DirCacheCommitCommand. createTemporaryIndex(ObjectId headId, DirCache index, RevWalk rw) -
Uses of DirCache in org.eclipse.jgit.dircache
Fields in org.eclipse.jgit.dircache declared as DirCache Modifier and Type Field Description protected DirCacheBaseDirCacheEditor. cacheThe cache instance this editor updates duringBaseDirCacheEditor.finish().protected DirCacheDirCacheIterator. cacheThe cache this iterator was created to walk.private DirCacheDirCacheCheckout. dcMethods in org.eclipse.jgit.dircache that return DirCache Modifier and Type Method Description DirCacheBaseDirCacheEditor. getDirCache()Get theDirCachestatic DirCacheDirCache. lock(java.io.File indexLocation, FS fs)Create a new in-core index representation, lock it, and read from disk.static DirCacheDirCache. lock(java.io.File indexLocation, FS fs, IndexChangedListener indexChangedListener)Create a new in-core index representation, lock it, and read from disk.static DirCacheDirCache. lock(Repository repository, IndexChangedListener indexChangedListener)Create a new in-core index representation, lock it, and read from disk.static DirCacheDirCache. newInCore()Create a new empty index which is never stored on disk.static DirCacheDirCache. read(java.io.File indexLocation, FS fs)Create a new in-core index representation and read an index from disk.static DirCacheDirCache. read(ObjectReader reader, AnyObjectId treeId)Create a new in memory index read from the contents of a tree.static DirCacheDirCache. read(Repository repository)Create a new in-core index representation and read an index from disk.Constructors in org.eclipse.jgit.dircache with parameters of type DirCache Constructor Description BaseDirCacheEditor(DirCache dc, int ecnt)Construct a new editor.DirCacheBuilder(DirCache dc, int ecnt)Construct a new builder.DirCacheCheckout(Repository repo, DirCache dc, ObjectId mergeCommitTree)Constructs a DirCacheCeckout for checking out one tree, merging with the index.DirCacheCheckout(Repository repo, DirCache dc, ObjectId mergeCommitTree, WorkingTreeIterator workingTree)Constructs a DirCacheCeckout for checking out one tree, merging with the index.DirCacheCheckout(Repository repo, ObjectId headCommitTree, DirCache dc, ObjectId mergeCommitTree)Constructs a DirCacheCeckout for merging and checking out two trees (HEAD and mergeCommitTree) and the index.DirCacheCheckout(Repository repo, ObjectId headCommitTree, DirCache dc, ObjectId mergeCommitTree, WorkingTreeIterator workingTree)Constructs a DirCacheCeckout for merging and checking out two trees (HEAD and mergeCommitTree) and the index.DirCacheEditor(DirCache dc, int ecnt)Construct a new editor.DirCacheIterator(DirCache dc)Create a new iterator for an already loaded DirCache instance. -
Uses of DirCache in org.eclipse.jgit.junit
Fields in org.eclipse.jgit.junit declared as DirCache Modifier and Type Field Description private DirCacheTestRepository.CommitBuilder. tree -
Uses of DirCache in org.eclipse.jgit.lib
Fields in org.eclipse.jgit.lib declared as DirCache Modifier and Type Field Description private DirCacheIndexDiff. dirCacheMethods in org.eclipse.jgit.lib that return DirCache Modifier and Type Method Description DirCacheRepository. lockDirCache()Create a new in-core index representation, lock it, and read from disk.DirCacheRepository. readDirCache()Create a new in-core index representation and read an index from disk. -
Uses of DirCache in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge declared as DirCache Modifier and Type Field Description private DirCacheStrategySimpleTwoWayInCore.InCoreMerger. cacheprotected DirCacheResolveMerger. dircacheDirectory cacheMethods in org.eclipse.jgit.merge with parameters of type DirCache Modifier and Type Method Description voidResolveMerger. setDirCache(DirCache dc)Sets the DirCache which shall be used by this merger. -
Uses of DirCache in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport that return DirCache Modifier and Type Method Description private DirCachePushCertificateStore. newDirCache()Methods in org.eclipse.jgit.transport with parameters of type DirCache Modifier and Type Method Description private ObjectIdPushCertificateStore. saveCert(ObjectInserter inserter, DirCache dc, PushCertificateStore.PendingCert pc, ObjectId curr)
-