参考:http://stackoverflow.com/questions/5863426/get-commit-list-between-tags-in-git


git log --pretty=oneline tagA...tagB

If you just wanted commits reachable from tagB but not tagA:

git log --pretty=oneline tagA..tagB

or

git log --pretty=oneline ^tagA tagB