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命令来获取两个标签之间的提交记录。通过不同的Git log命令选项,可以灵活地查看特定范围内的提交详情。
参考: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
1700

被折叠的 条评论
为什么被折叠?