# gulp-gitlogs

> Gulp task that generates a log file from certain prefixes.

Latest version **1.0.2** (published 2015-06-19) · ISC license · 0 weekly downloads

## Install

```sh
npm install gulp-gitlogs
pnpm add gulp-gitlogs
yarn add gulp-gitlogs
bun add gulp-gitlogs
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2015-06-19 |
| First published | 2015-05-25 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Anthony Holmes |
| Maintainers | anthonyjholmes |
| Keywords | gulp, log, create, git |

## Links

- npm: https://www.npmjs.com/package/gulp-gitlogs
- Repository: https://github.com/AnthonyJHolmes/gulp-gitlogs
- Issues: https://github.com/AnthonyJHolmes/gulp-gitlogs/issues
- npm.io page: https://npm.io/package/gulp-gitlogs

## Alternatives

- [cli-color](https://npm.io/package/cli-color.md) — 3.4M weekly downloads
- [log](https://npm.io/package/log.md) — 1.3M weekly downloads
- [logstash-client](https://npm.io/package/logstash-client.md) — 4.5K weekly downloads
- [@nocobase/plugin-logger](https://npm.io/package/@nocobase/plugin-logger.md) — 2.0K weekly downloads
- [child-process-debug](https://npm.io/package/child-process-debug.md) — 695 weekly downloads

## Recent versions

- 1.0.2 (latest) — 2015-06-19
- 1.0.1 — 2015-06-19
- 1.0.0 — 2015-06-19
- 0.1.6 — 2015-05-29
- 0.1.5 — 2015-05-29
- 0.1.4 — 2015-05-28
- 0.1.3 — 2015-05-28
- 0.1.2 — 2015-05-28
- 0.1.1 — 2015-05-27
- 0.1.0 — 2015-05-27
- 0.0.35 — 2015-05-27
- 0.0.34 — 2015-05-27
- 0.0.33 — 2015-05-27
- 0.0.32 — 2015-05-27
- 0.0.31 — 2015-05-27
- … 30 more at https://npm.io/package/gulp-gitlogs/versions

## README

# gulp-gitlogs

Gulp task that generates a log file from certain prefixes.


[![NPM](https://nodei.co/npm/gulp-gitlogs.png?downloads=true&stars=true)](https://nodei.co/npm/gulp-gitlogs/)

**Usage**

Used to generate logs for between the current tag and the second most recent tag.
Useful to see what was done between builds. Using --grep specifies a prefix for which you
would like to search for in the commits between the current and second most recent tags.
As you can see in the example below I used: --grep="DONE" so I am searching for all commits 
with the word DONE. 

By default a file called log.txt is created with the messages in the same directory for which the gulp task was called.

**I plan on making this better in time**

___
**Install**

```npm install gulp-gitlogs```
___
**Example**

```javascript
var gitlogs = require('gulp-gitlogs');

gulp.task('default', function(){
  return gitlogs({args : ' --grep="DONE"'}, function (err, stdout) {
   console.log(err);
	});
})
```

**API**
___

Coming soon

---
_Source: https://npm.io/package/gulp-gitlogs · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
