diff --git a/README.md b/README.md index f385c86..02e07d2 100644 --- a/README.md +++ b/README.md @@ -72,3 +72,11 @@ args = [ "-O3", ] ``` + +## Creating Changelogs + +Use the following command to create a changelog: + +```sh +git log --oneline (git describe --tags --abbrev=0)..HEAD | sed 's/^/- /' | xclip -selection clipboard +```