I am trying to get list of commits between the last Tag and the Tag before it
Answers that I see here ( and that I currently use ) are like this:
git log --pretty=oneline TagA...TagB
But this forces me to know the tag numbers that are not available at this part of the build process
thus sometimes this command fails, stopping the build process
Build machine is a Windows machine, I have seen unix related answers
Any way to achieve that ?