Uses of Class
org.eclipse.jgit.treewalk.WorkingTreeOptions
-
Packages that use WorkingTreeOptions Package Description org.eclipse.jgit.dircache Reading and editing the directory cache (index).org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system).org.eclipse.jgit.util.io Utility classes for IO (streams). -
-
Uses of WorkingTreeOptions in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type WorkingTreeOptions Modifier and Type Method Description static void
DirCacheCheckout. checkoutEntry(Repository repo, DirCacheEntry entry, ObjectReader or, boolean deleteRecursive, DirCacheCheckout.CheckoutMetadata checkoutMetadata, WorkingTreeOptions options)
Updates the file in the working tree with content and mode from an entry in the index.static void
DirCacheCheckout. getContent(Repository repo, String path, DirCacheCheckout.CheckoutMetadata checkoutMetadata, DirCacheCheckout.StreamSupplier inputStream, WorkingTreeOptions opt, OutputStream os)
Return filtered content for blob contents.static void
DirCacheCheckout. getContent(Repository repo, String path, DirCacheCheckout.CheckoutMetadata checkoutMetadata, ObjectLoader ol, WorkingTreeOptions opt, OutputStream os)
Return filtered content for a specific object (blob). -
Uses of WorkingTreeOptions in org.eclipse.jgit.treewalk
Fields in org.eclipse.jgit.treewalk with type parameters of type WorkingTreeOptions Modifier and Type Field Description static Config.SectionParser<WorkingTreeOptions>
WorkingTreeOptions. KEY
Key forConfig.get(SectionParser)
.Methods in org.eclipse.jgit.treewalk that return WorkingTreeOptions Modifier and Type Method Description WorkingTreeOptions
WorkingTreeIterator. getOptions()
Returns the working tree options used by this iterator.Constructors in org.eclipse.jgit.treewalk with parameters of type WorkingTreeOptions Constructor Description FileTreeIterator(File root, FS fs, WorkingTreeOptions options)
Create a new iterator to traverse the given directory and its children.FileTreeIterator(File root, FS fs, WorkingTreeOptions options, FileTreeIterator.FileModeStrategy fileModeStrategy)
Create a new iterator to traverse the given directory and its children.WorkingTreeIterator(String prefix, WorkingTreeOptions options)
Create a new iterator with no parent and a prefix.WorkingTreeIterator(WorkingTreeOptions options)
Create a new iterator with no parent. -
Uses of WorkingTreeOptions in org.eclipse.jgit.util.io
Methods in org.eclipse.jgit.util.io with parameters of type WorkingTreeOptions Modifier and Type Method Description static CoreConfig.EolStreamType
EolStreamTypeUtil. detectStreamType(TreeWalk.OperationType op, WorkingTreeOptions options, Attributes attrs)
Convenience method used to detect if CRLF conversion has been configured using the global repo options global attributes info attributes working tree .gitattributes
-