Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nescalante/grunt-gitlog


https://github.com/nescalante/grunt-gitlog

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# grunt-gitlog

> Git log to json

## Getting Started

If you haven't used [grunt][] before, be sure to check out the [Getting Started][] guide, as it explains how to create a [gruntfile][Getting Started] as well as install and use grunt plugins. Once you're familiar with that process, install this plugin with this command:

```sh
$ npm install --save-dev grunt-gitlog
```

[grunt]: http://gruntjs.com
[Getting Started]: http://gruntjs.com/getting-started

### Example

```js
grunt.initConfig({
gitlog: {
build: {
dest: 'test.json',
options: {
parameters: {

},
query: 'HEAD'
},
}
}
}
});
```