Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 663 Bytes

File metadata and controls

32 lines (23 loc) · 663 Bytes

Build Status

gitconfiglocal

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

example

var gitconfig = require('gitconfiglocal');

gitconfig('./',function(err,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/*' } } }
  */
});