Uses of Class
org.eclipse.jgit.util.FS
Packages that use FS
Package
Description
High-level API commands (the porcelain of JGit).
Reading and editing the directory cache (index).
File based repository storage.
Core API for repository, config, refs, object database.
Git submodule support.
Transport (fetch/push) for different protocols.
Walking and comparing directory/file trees (of commits, file system).
Utility classes.
-
Uses of FS in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type FSModifier and TypeMethodDescriptionstatic GitOpen repositorySet the file system abstraction to be used for repositories created by this command.Set the file system abstraction to be used for repositories created by this command. -
Uses of FS in org.eclipse.jgit.dircache
Methods in org.eclipse.jgit.dircache with parameters of type FSModifier and TypeMethodDescriptionstatic DirCacheCreate 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 DirCacheCreate a new in-core index representation and read an index from disk.Constructors in org.eclipse.jgit.dircache with parameters of type FS -
Uses of FS in org.eclipse.jgit.internal.diffmergetool
Methods in org.eclipse.jgit.internal.diffmergetool with parameters of type FSModifier and TypeMethodDescriptionstatic booleanExternalToolUtils.isToolAvailable(FS fs, File gitDir, File directory, String path) Whether tool is availableConstructors in org.eclipse.jgit.internal.diffmergetool with parameters of type FS -
Uses of FS in org.eclipse.jgit.internal.storage.file
Constructors in org.eclipse.jgit.internal.storage.file with parameters of type FSModifierConstructorDescriptionInitialize a reference to an on-disk object directory.PackLockImpl(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 FSModifier and TypeMethodDescriptionBaseRepositoryBuilder.getFS()Get the file system abstraction, or null if not set.Repository.getFS()Get the used file system abstraction.protected FSBaseRepositoryBuilder.safeFS()Get the configured FS, orDETECTED.Methods in org.eclipse.jgit.lib with parameters of type FSModifier and TypeMethodDescriptionstatic RepositoryCache.FileKeyObtain a pointer to an exact location on disk.Config.getPath(String section, String subsection, String name, FS fs, File resolveAgainst, Path defaultValue) Parse a string value and treat it as a file path, replacing a ~/ prefix by the user's home directory.default PathTypedConfigGetter.getPath(Config config, String section, String subsection, String name, FS fs, File resolveAgainst, Path defaultValue) Parse a string value from a gitConfigand treat it as a file path, replacing a ~/ prefix by the user's home directory.static booleanRepositoryCache.FileKey.isGitRepository(File dir, FS fs) Guess if a directory contains a Git repository.static RepositoryCache.FileKeyObtain a pointer to a location on disk.static FileGuess the proper path for a Git repository.Set the file system abstraction needed by this repository.Constructors in org.eclipse.jgit.lib with parameters of type FS -
Uses of FS in org.eclipse.jgit.storage.file
Constructors in org.eclipse.jgit.storage.file with parameters of type FSModifierConstructorDescriptionFileBasedConfig(File cfgLocation, FS fs) Create a configuration with no default fallback.FileBasedConfig(Config base, File cfgLocation, FS fs) The constructorUserConfigFile(Config parent, File config, File xdgConfig, FS fileSystem) Creates a newUserConfigFile. -
Uses of FS in org.eclipse.jgit.submodule
Methods in org.eclipse.jgit.submodule with parameters of type FSModifier and TypeMethodDescriptionstatic RepositorySubmoduleWalk.getSubmoduleRepository(File parent, String path, FS fs) Get submodule repository at path, using the specified file system abstractionstatic RepositorySubmoduleWalk.getSubmoduleRepository(File parent, String path, FS fs, BaseRepositoryBuilder<?, ? extends Repository> builder) Get submodule repository at path, using the specified file system abstraction and the specified builder -
Uses of FS in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport with parameters of type FSModifier and TypeMethodDescriptionabstract RemoteSessionSshSessionFactory.getSession(URIish uri, CredentialsProvider credentialsProvider, FS fs, int tms) Opens (or reuses) a session to a host. -
Uses of FS in org.eclipse.jgit.treewalk
Fields in org.eclipse.jgit.treewalk declared as FSModifier and TypeFieldDescriptionprotected final 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 FSModifierConstructorDescriptionCreate a new file entry.FileEntry(File f, FS fs, FileTreeIterator.FileModeStrategy fileModeStrategy) Create a new file entry given the specified FileModeStrategyFileEntry(File f, FS fs, FS.Attributes attributes, FileTreeIterator.FileModeStrategy fileModeStrategy) Create a new file entry given the specified FileModeStrategyFileTreeIterator(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.protectedFileTreeIterator(FileTreeIterator p, File root, FS fs) Create a new iterator to traverse a subdirectory.protectedFileTreeIterator(WorkingTreeIterator p, File root, FS fs, FileTreeIterator.FileModeStrategy fileModeStrategy) Create a new iterator to traverse a subdirectory, given the specified FileModeStrategy. -
Uses of FS in org.eclipse.jgit.util
Subclasses of FS in org.eclipse.jgit.utilModifier and TypeClassDescriptionclassBase FS for POSIX based systemsclassFS implementation for WindowsclassFS implementation for Cygwin on WindowsFields in org.eclipse.jgit.util declared as FSModifier and TypeFieldDescriptionstatic final FSFS.DETECTEDThe auto-detected implementation selected for this operating system and JRE.Methods in org.eclipse.jgit.util that return FSModifier and TypeMethodDescriptionstatic FSFS.detect()Auto-detect the appropriate file system abstraction.static FSAuto-detect the appropriate file system abstraction, taking into account the presence of a Cygwin installation on the system.Detect the file systemFS_POSIX.newInstance()Create a new instance of the same type of FS.FS_Win32_Cygwin.newInstance()FS_Win32.newInstance()abstract FSFS.newInstance()Create a new instance of the same type of FS.FS.setGitSystemConfig(File configFile) Set the path to the system-wide Git configuration file to use.FS.setUserHome(File path) Set the user's home directory location.Methods in org.eclipse.jgit.util with parameters of type FSModifier and TypeMethodDescriptionstatic FS.AttributesFileUtils.getFileAttributesPosix(FS fs, File file) Get file system attributes for the given file.SystemReader.getXdgCacheDirectory(FS fileSystem) Gets the directory denoted by environment variable XDG_CACHE_HOME.SystemReader.getXdgConfigDirectory(FS fileSystem) Gets the directory denoted by environment variable XDG_CONFIG_HOME.SystemReader.Delegate.openJGitConfig(Config parent, FS fs) abstract FileBasedConfigSystemReader.openJGitConfig(Config parent, FS fs) Open the jgit configuration located at $XDG_CONFIG_HOME/jgit/config.SystemReader.Delegate.openSystemConfig(Config parent, FS fs) abstract FileBasedConfigSystemReader.openSystemConfig(Config parent, FS fs) Open the gitconfig configuration found in the system-wide "etc" directory.SystemReader.Delegate.openUserConfig(Config parent, FS fs) abstract FileBasedConfigSystemReader.openUserConfig(Config parent, FS fs) Open the git configuration found in the user home.static StringSshSupport.runSshCommand(URIish sshUri, CredentialsProvider provider, FS fs, String command, int timeout) Utility to execute a remote SSH command and read the first line of output.Constructors in org.eclipse.jgit.util with parameters of type FSModifierConstructorDescriptionAttributes(File path, FS fs) Constructor when there are issues with reading.protectedInitialize this FS using another's current settings.protectedConstructorprotectedConstructorprotectedFS_Win32_Cygwin(FS src) Constructor