Last active
October 20, 2019 09:14
-
-
Save jackyef/5cf0397181f7328f693b1d075d9497ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const latestTag = child.execSync('git describe --long').toString('utf-8').split('-')[0]; | |
const output = child | |
.execSync(`git log ${latestTag}..HEAD --format=%B%H----DELIMITER----`) | |
.toString("utf-8"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment