Skip to content

Instantly share code, notes, and snippets.

@DAB0mB
Created September 11, 2018 22:19
Show Gist options
  • Save DAB0mB/9a33f2121c4403cd8a475e73fb51ea18 to your computer and use it in GitHub Desktop.
Save DAB0mB/9a33f2121c4403cd8a475e73fb51ea18 to your computer and use it in GitHub Desktop.
const { execFile } = require('child_process')
execFile('git', ['log'], (err, out) => {
if (err) {
console.error(err)
}
else {
console.log(out)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment