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

相关文章:

  • 2022-01-07
  • 2022-12-23
  • 2021-05-29
  • 2021-08-22
  • 2022-02-01
  • 2021-09-19
  • 2022-12-23
  • 2021-05-20
猜你喜欢
  • 2021-12-20
  • 2022-12-23
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-08-01
相关资源
相似解决方案