git 取得两个 tag 之间的 commit

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
posted @ 2020-01-21 12:21  kekemuyu  Views(1437)  Comments(0Edit  收藏  举报