Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nescalante/grunt-gitlog
https://github.com/nescalante/grunt-gitlog
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/nescalante/grunt-gitlog
- Owner: nescalante
- License: mit
- Created: 2014-08-22T18:14:54.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-03-31T20:10:22.000Z (almost 8 years ago)
- Last Synced: 2024-09-17T01:39:22.332Z (4 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
},
}
}
}
});
```