packagegitconfig

1.0.0 • Public • Published

Build Status

packagegitconfig

find the git folder for your package and parse the .git/config file into a useful data structure. also adds the github web url for the repo.

example

var gitconfig = require('packagegitconfig');
 
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-packagegitconfig.git',
          fetch: '+refs/heads/*:refs/remotes/origin/*' } },
    github: 'https://github.com/soldair/node-packagegitconfig' }
  */
 
 
 
});
 
 

/packagegitconfig/

    Package Sidebar

    Install

    npm i packagegitconfig

    Weekly Downloads

    4

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • soldair