-
Classes Class Description org.eclipse.jgit.ignore.IgnoreRule this rule does not support double star pattern and is slow parsing glob expressions. Consider to useFastIgnoreRule
instead. See https://bugs.eclipse.org/bugs/show_bug.cgi?id=440732org.eclipse.jgit.lib.FileTreeEntry To look up information about a single path, useTreeWalk.forPath(Repository, String, org.eclipse.jgit.revwalk.RevTree)
. To lookup information about multiple paths at once, use aTreeWalk
and obtain the current entry's information from its getter methods.org.eclipse.jgit.lib.GitlinkTreeEntry To look up information about a single path, useTreeWalk.forPath(Repository, String, org.eclipse.jgit.revwalk.RevTree)
. To lookup information about multiple paths at once, use aTreeWalk
and obtain the current entry's information from its getter methods.org.eclipse.jgit.lib.SymlinkTreeEntry To look up information about a single path, useTreeWalk.forPath(Repository, String, org.eclipse.jgit.revwalk.RevTree)
. To lookup information about multiple paths at once, use aTreeWalk
and obtain the current entry's information from its getter methods.org.eclipse.jgit.lib.Tree To look up information about a single path, useTreeWalk.forPath(Repository, String, org.eclipse.jgit.revwalk.RevTree)
. To lookup information about multiple paths at once, use aTreeWalk
and obtain the current entry's information from its getter methods.org.eclipse.jgit.lib.TreeEntry To look up information about a single path, useTreeWalk.forPath(Repository, String, org.eclipse.jgit.revwalk.RevTree)
. To lookup information about multiple paths at once, use aTreeWalk
and obtain the current entry's information from its getter methods.
-
Exceptions Exceptions Description org.eclipse.jgit.transport.UploadPackMayNotContinueException useServiceMayNotContinueException
instead.
-
Methods Method Description org.eclipse.jgit.dircache.DirCacheCheckout.checkoutEntry(Repository, File, DirCacheEntry) Use the overloaded form that acceptsObjectReader
.org.eclipse.jgit.dircache.DirCacheCheckout.checkValidPath(String) org.eclipse.jgit.internal.storage.file.WindowCache.reconfigure(WindowCacheConfig) usecfg.install()
to avoid internal reference.org.eclipse.jgit.internal.storage.pack.PackWriter.preparePack(ProgressMonitor, Collection<? extends ObjectId>, Collection<? extends ObjectId>) to be removed in 2.0; use the Set version of this method.org.eclipse.jgit.merge.Merger.getBaseCommit(int, int) useMerger.getBaseCommitId()
instead, as that does not require walking the commits againorg.eclipse.jgit.transport.TransferConfig.isFsckObjects() useTransferConfig.newObjectChecker()
instead.org.eclipse.jgit.treewalk.CanonicalTreeParser.getParent() internal use onlyorg.eclipse.jgit.treewalk.WorkingTreeIterator.isModified(DirCacheEntry, boolean)
-
Constructors Constructor Description org.eclipse.jgit.util.TemporaryBuffer.LocalFile() Use theFile
overload to supply a directory.