showf
v0.0.9
Published
show filenames of changed files in latest commit
Downloads
5
Maintainers
Readme
showf - show files in commit
The showf Node.js module shows filenames of changed files in the latest commit to a local git repository.
Usage
var showf = require('showf')
, cop = require('cop')
showf(process.cwd())
.pipe(cop(function (s) { return s + '\n' }))
.pipe(process.stdout)
API
showf(dir)
dir
Path to local git repository
The showf
module exports a single function that returns a Transform stream. The output of the stream are filenames of changed files in the latest commit.