Uses of Class
org.eclipse.jgit.util.FS
-
Packages that use FS 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.internal.storage.file File based repository storage.org.eclipse.jgit.lib Core API for repository, config, refs, object database.org.eclipse.jgit.storage.file org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.treewalk Walking and comparing directory/file trees (of commits, file system).org.eclipse.jgit.util Utility classes. -
-
Uses of FS in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type FS Modifier and Type Method Description static GitGit. open(File dir, FS fs) -
Uses of FS in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type FS Modifier and Type Method Description static DirCacheDirCache. lock(File indexLocation, FS fs)Create a new in-core index representation, lock it, and read from disk.static DirCacheDirCache. lock(File indexLocation, FS fs, IndexChangedListener indexChangedListener)Create a new in-core index representation, lock it, and read from disk.static DirCacheDirCache. read(File indexLocation, FS fs)Create a new in-core index representation and read an index from disk.Constructors in org.eclipse.jgit.dircache with parameters of type FS Constructor Description DirCache(File indexLocation, FS fs)Create a new in-core index representation. -
Uses of FS in org.eclipse.jgit.internal.storage.file
Constructors in org.eclipse.jgit.internal.storage.file with parameters of type FS Constructor Description LockFile(File f, FS fs)Create a new lock for any file.ObjectDirectory(Config cfg, File dir, File[] alternatePaths, FS fs, File shallowFile)Initialize a reference to an on-disk object directory.PackLock(File packFile, FS fs)Create a new lock for a pack file. -
Uses of FS in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return FS Modifier and Type Method Description FSBaseRepositoryBuilder. getFS()FSRepository. getFS()protected FSBaseRepositoryBuilder. safeFS()Methods in org.eclipse.jgit.lib with parameters of type FS Modifier and Type Method Description static RepositoryCache.FileKeyRepositoryCache.FileKey. exact(File directory, FS fs)Obtain a pointer to an exact location on disk.static booleanRepositoryCache.FileKey. isGitRepository(File dir, FS fs)Guess if a directory contains a Git repository.static RepositoryCache.FileKeyRepositoryCache.FileKey. lenient(File directory, FS fs)Obtain a pointer to a location on disk.static FileRepositoryCache.FileKey. resolve(File directory, FS fs)Guess the proper path for a Git repository.BBaseRepositoryBuilder. setFS(FS fs)Set the file system abstraction needed by this repository.Constructors in org.eclipse.jgit.lib with parameters of type FS Constructor Description FileKey(File directory, FS fs) -
Uses of FS in org.eclipse.jgit.storage.file
Constructors in org.eclipse.jgit.storage.file with parameters of type FS Constructor Description FileBasedConfig(File cfgLocation, FS fs)Create a configuration with no default fallback.FileBasedConfig(Config base, File cfgLocation, FS fs)The constructor -
Uses of FS in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport with parameters of type FS Modifier and Type Method Description protected com.jcraft.jsch.JSchJschConfigSessionFactory. createDefaultJSch(FS fs)protected com.jcraft.jsch.SessionJschConfigSessionFactory. createSession(OpenSshConfig.Host hc, String user, String host, int port, FS fs)Create a new remote session for the requested address.static OpenSshConfigOpenSshConfig. get(FS fs)Obtain the user's configuration data.protected com.jcraft.jsch.JSchJschConfigSessionFactory. getJSch(OpenSshConfig.Host hc, FS fs)Obtain the JSch used to create new sessions.RemoteSessionJschConfigSessionFactory. getSession(URIish uri, CredentialsProvider credentialsProvider, FS fs, int tms)abstract RemoteSessionSshSessionFactory. getSession(URIish uri, CredentialsProvider credentialsProvider, FS fs, int tms)Open (or reuse) a session to a host. -
Uses of FS in org.eclipse.jgit.treewalk
Fields in org.eclipse.jgit.treewalk declared as FS Modifier and Type Field Description protected FSFileTreeIterator. fsthe file system abstraction which will be necessary to perform certain file system operations.Constructors in org.eclipse.jgit.treewalk with parameters of type FS Constructor Description FileEntry(File f, FS fs)Create a new file entry.FileTreeIterator(File root, FS fs, WorkingTreeOptions options)Create a new iterator to traverse the given directory and its children.FileTreeIterator(WorkingTreeIterator p, File root, FS fs)Create a new iterator to traverse a subdirectory. -
Uses of FS in org.eclipse.jgit.util
Subclasses of FS in org.eclipse.jgit.util Modifier and Type Class Description classFS_POSIXBase FS for POSIX based systemsclassFS_POSIX_Java5FS implementaton for Java5classFS_POSIX_Java6FS implementation for POSIX systems using Java6classFS_Win32FS implementation for WindowsclassFS_Win32_CygwinFS implementation for Cygwin on WindowsFields in org.eclipse.jgit.util declared as FS Modifier and Type Field Description static FSFS. DETECTEDThe auto-detected implementation selected for this operating system and JRE.Methods in org.eclipse.jgit.util that return FS Modifier and Type Method Description static FSFS. detect()Auto-detect the appropriate file system abstraction.static FSFS. detect(Boolean cygwinUsed)Auto-detect the appropriate file system abstraction, taking into account the presence of a Cygwin installation on the system.FSFS.FSFactory. detect(Boolean cygwinUsed)Detect the file systemFSFS_POSIX_Java5. newInstance()FSFS_POSIX_Java6. newInstance()FSFS_Win32_Cygwin. newInstance()FSFS_Win32. newInstance()abstract FSFS. newInstance()FSFS. setGitPrefix(File path)Set the $prefix directory C Git uses.FSFS. setUserHome(File path)Set the user's home directory location.Methods in org.eclipse.jgit.util with parameters of type FS Modifier and Type Method Description abstract FileBasedConfigSystemReader. openSystemConfig(Config parent, FS fs)abstract FileBasedConfigSystemReader. openUserConfig(Config parent, FS fs)Constructors in org.eclipse.jgit.util with parameters of type FS Constructor Description Attributes(File path, FS fs)Constructor when there are issues with readingFS(FS src)Initialize this FS using another's current settings.FS_POSIX(FS src)ConstructorFS_POSIX_Java5(FS src)ConstructorFS_POSIX_Java6(FS src)ConstructorFS_Win32(FS src)ConstructorFS_Win32_Cygwin(FS src)Constructor
-