Last active
June 21, 2023 05:37
-
-
Save egeste/8a78b8fc1a1f7bc593528e6b4b0dccf7 to your computer and use it in GitHub Desktop.
Generate a markdown formatted changelog from a git branch
This file contains 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
git log \ | |
-E --merges \ | |
--grep='Merged PR [0-9]+: Release [0-9]+.[0-9]+.[0-9]+.*' \ | |
--format='# %ad%n## %s%n```%n%b%n```%n' \ | |
--date=format-local:'%A %B %d, %Y' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment