@rexxars/gitconfiglocal
TypeScript icon, indicating that this package has built-in type declarations

3.0.1 • Public • Published

Build Status

gitconfiglocal

parse the .git/config file into a useful data structure

example

  • search config in $GIT_DIR (.git by default)
var gitconfig = require('@rexxars/gitconfiglocal');

gitconfig('./').then((config) => {
  console.log(config);
  /* prints:
  { core:
     { repositoryformatversion: '0',
       filemode: true,
       bare: false,
       logallrefupdates: true },
    remote:
     { origin:
        { url: 'git@github.com:soldair/node-gitconfiglocal.git',
          fetch: '+refs/heads/*:refs/remotes/origin/*' } } }
  */
});
  • specify $GIT_DIR via options:
gitconfig('./', { gitDir: 'path/to/gitdir' });

license

licensed under the 3-Clause BSD license.

Readme

Keywords

Package Sidebar

Install

npm i @rexxars/gitconfiglocal

Weekly Downloads

1,724

Version

3.0.1

License

BSD-3-Clause

Unpacked Size

4.52 kB

Total Files

5

Last publish

Collaborators

  • rexxars