0.2.2 • Published 8 years ago

hg-log-utils v0.2.2

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

git-log-utils

Utility methods for parsing git log and hg log output

Installation

  npm install hg-log-utils
  

Usage

GitLogUtils = require('hg-log-utils')

GitLogUtils.getFileCommitHistory(fileName)

Returns an array of javascript objects representing the commits that effected the requested file with line stats, that looks like this:

[{
  "id": "1c41d8f647f7ad30749edcd0a554bd94e301c651",
  "authorName": "Bee Wilkerson",
  "relativeDate": "6 days ago",
  "authorDate": 1450881433,
  "message": "docs all work again after refactoring to bumble-build",
  "body": "",
  "hash": "1c41d8f",
  "linesAdded": 2,
  "linesDeleted": 2
}, {
  ...
}]