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
git 取得两个 tag 之间的 commit
原文:https://www.cnblogs.com/kekemuyu/p/12221333.html