Skip to content

Instantly share code, notes, and snippets.

@Couto
Last active March 7, 2019 16:12
Show Gist options
  • Save Couto/06088446b807da7e078ea578a485d2bb to your computer and use it in GitHub Desktop.
Save Couto/06088446b807da7e078ea578a485d2bb to your computer and use it in GitHub Desktop.
Create a short changelog between two tags
git shortlog -e --format="%h %s" <last_tag>..HEAD | git tag -s <new_tag> -F -
```
First Name <email@example.com> (5):
f2b7c5c Add support for multiple environments (#3)
ac202d9 Configure read_only mode (#5)
024d580 Convert `read_only_dashboard` to string (#6)
dcfa003 Add monitors submodule (#7)
fa92fc2 Fix metrics' properties (#8)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment