Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
alfonsodev
on March 20, 2015
|
parent
|
context
|
favorite
| on:
Generate Your Changelog From GitHub Issues
In the projects I work we prefix every commit with codename and 3 digits, I extract the change log from this command:
git log v0.3...v0.4 --oneline | grep -oh -B 1 "CODENAME-[0-9][0-9][0-9]" | sort | uniq
skywinder
on March 20, 2015
[–]
I will add this feature in the future to this script also!
https://github.com/skywinder/github-changelog-generator/issu...
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
git log v0.3...v0.4 --oneline | grep -oh -B 1 "CODENAME-[0-9][0-9][0-9]" | sort | uniq