FEBRUARY 23, 2023
Here's how to list the commits that happened between two tags.
git log --pretty=oneline 0.8.0...0.9.0
The two tags—in this case, 0.8.0 and 0.9.0—need to exist.
0.8.0
0.9.0
You can list existing tags in a repository as below.
git tag
BlogCodeGit