PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/gitconfiglocal

Просмотр файла: README.md

[![Build Status](https://travis-ci.org/soldair/node-gitconfiglocal.svg?branch=master)](https://travis-ci.org/soldair/node-gitconfiglocal)

gitconfiglocal
==============

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


example
=======

```js
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/*' } } }
  */
});


```

Выполнить команду


Для локальной разработки. Не используйте в интернете!