You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
jonschlinkert de5f9581cb
clean up tests, use assert
9 years ago
.editorconfig run update 9 years ago
.eslintrc.json run update 9 years ago
.gitattributes first commit 10 years ago
.gitignore first commit 10 years ago
.travis.yml run update 9 years ago
.verb.md generate docs 9 years ago
LICENSE run update 9 years ago
README.md update deps, add related links to readme 9 years ago
example.js adds example 9 years ago
index.js use `git-config-path` 9 years ago
package.json 0.4.0 9 years ago
test.js clean up tests, use assert 9 years ago

README.md

parse-git-config NPM version Build Status

Parse .git/config into a JavaScript object. sync or async.

Install

Install with npm:

$ npm install parse-git-config --save

Usage

var parse = require('parse-git-config');

// sync
var config = parse.sync();

// or async
parse(function (err, config) {
  // do stuff with err/config
});

Custom path and/or cwd

parse.sync({cwd: 'foo', path: '.git/config'});

// async
parse({cwd: 'foo', path: '.git/config'}, function (err, config) {
  // do stuff 
});

Example result

Config object will be something like:

{ core:
   { repositoryformatversion: '0',
     filemode: true,
     bare: false,
     logallrefupdates: true,
     ignorecase: true,
     precomposeunicode: true },
  'remote "origin"':
   { url: 'https://github.com/jonschlinkert/parse-git-config.git',
     fetch: '+refs/heads/*:refs/remotes/origin/*' },
  'branch "master"': { remote: 'origin', merge: 'refs/heads/master', ... } }

API

parse

Asynchronously parse a .git/config file. If only the callback is passed, the .git/config file relative to process.cwd() is used.

Params

  • options {Object|String|Function}: Options with cwd or path, the cwd to use, or the callback function.
  • cb {Function}: callback function if the first argument is options or cwd.
  • returns {Object}

Example

parse(function(err, config) {
  if (err) throw err;
  // do stuff with config
});

.sync

Synchronously parse a .git/config file. If no arguments are passed, the .git/config file relative to process.cwd() is used.

Params

  • options {Object|String}: Options with cwd or path, or the cwd to use.
  • returns {Object}

Example

var config = parse.sync();

.keys

Returns an object with only the properties that had ini-style keys converted to objects (example below).

Params

  • config {Object}: The parsed git config object.
  • returns {Object}

Example

var config = parse.sync();
var obj = parse.keys(config);

.keys examples

Converts ini-style keys into objects:

Example 1

var parse = require('parse-git-config');
var config = { 
  'foo "bar"': { doStuff: true },
  'foo "baz"': { doStuff: true } 
};

console.log(parse.keys(config));

Results in:

{ 
  foo: { 
    bar: { doStuff: true }, 
    baz: { doStuff: true } 
  } 
}

Example 2

var parse = require('parse-git-config');
var config = {
  'remote "origin"': { 
    url: 'https://github.com/jonschlinkert/normalize-pkg.git',
    fetch: '+refs/heads/*:refs/remotes/origin/*' 
  },
  'branch "master"': { 
    remote: 'origin', 
    merge: 'refs/heads/master' 
  },
  'branch "dev"': { 
    remote: 'origin', 
    merge: 'refs/heads/dev', 
    rebase: true 
  }
};

console.log(parse.keys(config));

Results in:

{
  remote: {
    origin: {
      url: 'https://github.com/jonschlinkert/normalize-pkg.git',
      fetch: '+refs/heads/*:refs/remotes/origin/*'
    }
  },
  branch: {
    master: {
      remote: 'origin',
      merge: 'refs/heads/master'
    },
    dev: {
      remote: 'origin',
      merge: 'refs/heads/dev',
      rebase: true
    }
  }
}

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Building docs

Generate readme and API documentation with verb:

$ npm install verb && npm run docs

Or, if verb is installed globally:

$ verb

Running tests

Install dev dependencies:

$ npm install -d && npm test

Author

Jon Schlinkert

License

Copyright © 2016 Jon Schlinkert Released under the MIT license.


This file was generated by verb, v0.9.0, on March 19, 2016.