Based on bithavoc, it lists the last tag
until HEAD
. But I hope to list the logs between 2 tags.
// 2 or 3 dots between `YOUR_LAST_VERSION_TAG` and `HEAD`
git log YOUR_LAST_VERSION_TAG..HEAD --no-merges --format=%B
List logs between 2 tags.
// 2 or 3 dots between 2 tags
git log FROM_TAG...TO_TAG
For example, it will list logs from v1.0.0
to v1.0.1
.
git log v1.0.0...v1.0.1 --oneline --decorate