I\'m trying to use tags for release management in Git—I create a tag for each release. I\'d like to be able to create release notes by listing the comment titles for every commi
To show commits since TAG to current head:
git log TAG..HEAD
Between two commits:
git log TAG..TAG
For formatting the log output have a look at Pretty formats section of git log.