Uses of Class
org.eclipse.jgit.lib.Config
-
Packages that use Config Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.diff Comparing file contents by computing diffs.org.eclipse.jgit.internal.storage.dfs Distributed file system based repository storage.org.eclipse.jgit.internal.storage.file File based repository storage.org.eclipse.jgit.internal.storage.reftable 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.storage.file org.eclipse.jgit.storage.pack org.eclipse.jgit.submodule Git submodule support.org.eclipse.jgit.transport Transport (fetch/push) for different protocols.org.eclipse.jgit.util Utility classes. -
-
Uses of Config in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api with parameters of type Config Modifier and Type Method Description static BranchConfig.BranchRebaseModePullCommand. getRebaseMode(String branchName, Config config)Reads the rebase mode to use for a pull command from the repository configuration. -
Uses of Config in org.eclipse.jgit.diff
Methods in org.eclipse.jgit.diff with parameters of type Config Modifier and Type Method Description voidDiffFormatter. setReader(ObjectReader reader, Config cfg)Set the repository the formatter can load object contents from. -
Uses of Config in org.eclipse.jgit.internal.storage.dfs
Subclasses of Config in org.eclipse.jgit.internal.storage.dfs Modifier and Type Class Description classDfsConfigConfig implementation used by DFS repositories.Methods in org.eclipse.jgit.internal.storage.dfs with parameters of type Config Modifier and Type Method Description DfsBlockCacheConfigDfsBlockCacheConfig. fromConfig(Config rc)Update properties by setting fields from the configuration.DfsReaderOptionsDfsReaderOptions. fromConfig(Config rc)Update properties by setting fields from the configuration. -
Uses of Config in org.eclipse.jgit.internal.storage.file
Constructors in org.eclipse.jgit.internal.storage.file with parameters of type Config Constructor Description ObjectDirectory(Config cfg, File dir, File[] alternatePaths, FS fs, File shallowFile)Initialize a reference to an on-disk object directory.Constructor parameters in org.eclipse.jgit.internal.storage.file with type arguments of type Config Constructor Description FileReftableStack(File stackPath, File reftableDir, Runnable onChange, Supplier<Config> configSupplier)Creates a stack corresponding to the list of reftables in the argument -
Uses of Config in org.eclipse.jgit.internal.storage.reftable
Methods in org.eclipse.jgit.internal.storage.reftable with parameters of type Config Modifier and Type Method Description voidReftableConfig. fromConfig(Config rc)Update properties by setting fields from the configuration.Constructors in org.eclipse.jgit.internal.storage.reftable with parameters of type Config Constructor Description ReftableConfig(Config cfg)Create a configuration honoring settings in aConfig. -
Uses of Config in org.eclipse.jgit.lib
Subclasses of Config in org.eclipse.jgit.lib Modifier and Type Class Description classBlobBasedConfigConfiguration file based on the blobs stored in the repository.classStoredConfigPersistent configuration that can be stored and loaded from a location.Methods in org.eclipse.jgit.lib that return Config Modifier and Type Method Description ConfigConfig. getBaseConfig()Retrieves this config's base config.protected ConfigBaseRepositoryBuilder. getConfig()Get the cached repository configuration, loading if not yet available.protected ConfigBaseRepositoryBuilder. loadConfig()Parse and load the repository specific configuration.Methods in org.eclipse.jgit.lib with parameters of type Config Modifier and Type Method Description RepositoryCacheConfigRepositoryCacheConfig. fromConfig(Config config)Update properties by setting fields from the configuration.booleanDefaultTypedConfigGetter. getBoolean(Config config, String section, String subsection, String name, boolean defaultValue)Get a boolean value from a gitConfig.booleanTypedConfigGetter. getBoolean(Config config, String section, String subsection, String name, boolean defaultValue)Get a boolean value from a gitConfig.<T extends Enum<?>>
TDefaultTypedConfigGetter. getEnum(Config config, T[] all, String section, String subsection, String name, T defaultValue)Parse an enumeration from a gitConfig.<T extends Enum<?>>
TTypedConfigGetter. getEnum(Config config, T[] all, String section, String subsection, String name, T defaultValue)Parse an enumeration from a gitConfig.intDefaultTypedConfigGetter. getInt(Config config, String section, String subsection, String name, int defaultValue)Obtain an integer value from a gitConfig.intTypedConfigGetter. getInt(Config config, String section, String subsection, String name, int defaultValue)Obtain an integer value from a gitConfig.intDefaultTypedConfigGetter. getIntInRange(Config config, String section, String subsection, String name, int minValue, int maxValue, int defaultValue)Obtain an integer value from a gitConfigwhich must be in given range.intTypedConfigGetter. getIntInRange(Config config, String section, String subsection, String name, int minValue, int maxValue, int defaultValue)Obtain an integer value from a gitConfigwhich must be in given range.longDefaultTypedConfigGetter. getLong(Config config, String section, String subsection, String name, long defaultValue)Obtain a long value from a gitConfig.longTypedConfigGetter. getLong(Config config, String section, String subsection, String name, long defaultValue)Obtain a long value from a gitConfig.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.List<RefSpec>DefaultTypedConfigGetter. getRefSpecs(Config config, String section, String subsection, String name)List<RefSpec>TypedConfigGetter. getRefSpecs(Config config, String section, String subsection, String name)longDefaultTypedConfigGetter. getTimeUnit(Config config, String section, String subsection, String name, long defaultValue, TimeUnit wantUnit)Parse a numerical time unit, such as "1 minute", from a gitConfig.longTypedConfigGetter. getTimeUnit(Config config, String section, String subsection, String name, long defaultValue, TimeUnit wantUnit)Parse a numerical time unit, such as "1 minute", from a gitConfig.TConfig.SectionParser. parse(Config cfg)Create a model object from a configuration.Constructors in org.eclipse.jgit.lib with parameters of type Config Constructor Description BlobBasedConfig(Config base, byte[] blob)Parse a configuration from a byte array.BlobBasedConfig(Config base, Repository db, AnyObjectId objectId)Load a configuration file from a blob.BlobBasedConfig(Config base, Repository db, AnyObjectId treeish, String path)Load a configuration file from a blob stored in a specific commit.BranchConfig(Config config, String branchName)Create a new branch config, which will read configuration from config about specified branch.Config(Config defaultConfig)Create an empty configuration with a fallback for missing keys.GpgConfig(Config config)Create a new GPG config that reads the configuration from config.StoredConfig(Config defaultConfig)Create an empty configuration with a fallback for missing keys. -
Uses of Config in org.eclipse.jgit.merge
Methods in org.eclipse.jgit.merge with parameters of type Config Modifier and Type Method Description abstract MergerMergeStrategy. newMerger(ObjectInserter inserter, Config config)Create a new merge instance.MergerStrategyOneSided. newMerger(ObjectInserter inserter, Config config)Create a new merge instance.ThreeWayMergerStrategyRecursive. newMerger(ObjectInserter inserter, Config config)Create a new merge instance.ThreeWayMergerStrategyResolve. newMerger(ObjectInserter inserter, Config config)Create a new merge instance.ThreeWayMergerStrategySimpleTwoWayInCore. newMerger(ObjectInserter inserter, Config config)Create a new merge instance.Constructors in org.eclipse.jgit.merge with parameters of type Config Constructor Description RecursiveMerger(ObjectInserter inserter, Config config)Normal recursive merge, implies inCore.ResolveMerger(ObjectInserter inserter, Config config)Constructor for ResolveMerger. -
Uses of Config in org.eclipse.jgit.storage.file
Subclasses of Config in org.eclipse.jgit.storage.file Modifier and Type Class Description classFileBasedConfigThe configuration file that is stored in the file of the file system.Methods in org.eclipse.jgit.storage.file with parameters of type Config Modifier and Type Method Description WindowCacheConfigWindowCacheConfig. fromConfig(Config rc)Update properties by setting fields from the configuration.Constructors in org.eclipse.jgit.storage.file with parameters of type Config Constructor Description FileBasedConfig(Config base, File cfgLocation, FS fs)The constructor -
Uses of Config in org.eclipse.jgit.storage.pack
Methods in org.eclipse.jgit.storage.pack with parameters of type Config Modifier and Type Method Description voidPackConfig. fromConfig(Config rc)Update properties by setting fields from the configuration.Constructors in org.eclipse.jgit.storage.pack with parameters of type Config Constructor Description PackConfig(Config cfg)Create a configuration honoring settings in aConfig. -
Uses of Config in org.eclipse.jgit.submodule
Methods in org.eclipse.jgit.submodule with parameters of type Config Modifier and Type Method Description SubmoduleWalkSubmoduleWalk. setModulesConfig(Config config)Set the config used by this walk. -
Uses of Config in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport with parameters of type Config Modifier and Type Method Description static List<RemoteConfig>RemoteConfig. getAllRemoteConfigs(Config rc)Parse all remote blocks in an existing configuration file, looking for remotes configuration.voidRemoteConfig. update(Config rc)Update this remote's definition within the configuration.Constructors in org.eclipse.jgit.transport with parameters of type Config Constructor Description HttpConfig(Config config, URIish uri)Creates a newHttpConfigtailored to the givenURIish.PushConfig(Config config)Creates a new instance.RemoteConfig(Config rc, String remoteName)Parse a remote block from an existing configuration file.TransferConfig(Config rc)Create a configuration honoring settings in aConfig.UrlConfig(Config config)Creates a newUrlConfiginstance. -
Uses of Config in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util with parameters of type Config Modifier and Type Method Description abstract FileBasedConfigSystemReader. openJGitConfig(Config parent, FS fs)Open the jgit configuration located at $XDG_CONFIG_HOME/jgit/config.abstract FileBasedConfigSystemReader. openSystemConfig(Config parent, FS fs)Open the gitconfig configuration found in the system-wide "etc" directory.abstract FileBasedConfigSystemReader. openUserConfig(Config parent, FS fs)Open the git configuration found in the user home.
-