You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.3 KiB
1.3 KiB
Changelog
All notable changes to this project will be documented in this file.
command
git-chglog --tag-filter-pattern 'v2.0.*' -o CHANGELOG-2.0.md
create next tag
git-chglog --next-tag 2.0.0 -o CHANGELOG.md
git commit -am "release 2.0.0"
git tag 2.0.0
Query | Description | Example |
---|---|---|
<old>..<new> |
Commit contained in <new> tags from <old> . |
$ git-chglog 1.0.0..2.0.0 |
<name>.. |
Commit from the <name> to the latest tag. |
$ git-chglog 1.0.0.. |
..<name> |
Commit from the oldest tag to <name> . |
$ git-chglog ..2.0.0 |
<name> |
Commit contained in <name> . |
$ git-chglog 1.0.0 |