last-commit-log
Node.js module to read last git commit information - mostly to be used by continuous integration and build systems.
Usage
const LCL = require('last-commit-log')
const lcl = new LCL()
async function run () {
const commit = await lcl.getLastCommit()
console.log(commit)
}
run()
full examples
commit is an object like this:
{
"gitTag": "2.0.0",
"gitBranch": "master",
"gitRemote": "git@github.com:group/repo.git",
"gitUrl": "http://github.com/group/repo",
"shortHash": "42dc921",
"hash": "42dc921d25a3e7e1607302d2acfdc3fd991c0c01",
"subject": "chore: add lock",
"sanitizedSubject": "chore-add-lock",
"body": "",
"committer": {
"date": "1515240839",
"relativeDate": "2 hours ago",
"name": "Committer Fred",
"email": "fred@fred.com"
},
"author": {
"date": "1515240839",
"relativeDate": "2 hours ago",
"name": "Author Baz",
"email": "baz@baz.com"
}
}
inspired by git-last-commit and fixed the parsing issue.
Contributors
This project follows the git-contributor spec, auto upated at Fri Jun 22 2018 13:55:26 GMT+0800
.
License
The MIT License (MIT)