Last Updated: February 25, 2016
·
10.57K
· ninjabiscuit

Show the commit log between a tag and HEAD

git log --pretty="%h - %s (%an)" tag-name..HEAD

Options provided to --pretty make the output more readable. Documentation for this and all the other options can be found here

Also works for specific commits:

git log --pretty="%h - %s (%an)" c3eeab6..0158d99