![]() |
![]()
| ![]() |
![]()
NAMEConfig::GitLike::Git - load Git configuration files SYNOPSISuse Config::GitLike::Git; my $config = Config::GitLike::Git->new; $config->load("/path/to/repo"); DESCRIPTIONThis is a modification of Config::GitLike to look at the same locations that Git writes to. Unlike with Config::GitLike, you do not need to pass a confname to its constructor. This module also enables the Config::GitLike option to maintain git compatibility when reading and writing variables. "load" in Config::GitLike should be passed path to the top level of a git repository -- this defaults to the current directory. It will append ".git" as necessary. It supports both bare and non-bare repositories. METHODSThis module overrides these methods from "Config::GitLike": dir_fileThe per-directory configuration file is .git/config. With an optional directory argument, will return a fully-qualified path to the configuration file, as git would edit with "git config --local -C path". user_fileThe per-user configuration file is ~/.gitconfig global_fileThe per-host configuration file is /etc/gitconfig is_git_dirReturns true if a file contains the necessary files (as git would reckon it) for the path to be a git repository. load_dirsLoads the relevant .git/config file. SEE ALSOConfig::GitLike LICENSEYou may modify and/or redistribute this software under the same terms as Perl 5.8.8. COPYRIGHTCopyright 2010 Best Practical Solutions, LLC AUTHORSAlex Vandiver <alexmv@bestpractical.com>, Christine Spang <spang@bestpractical.com>
|