Git Logging
git log <yourlasttag>..HEAD
and in case you don’t know your latest tag or want this to be dynamic, on windows you could do
for /f "delims=" %a in ('git describe --tags --abbrev^=0') do @set latesttag=%a
git log %latesttag%..HEAD --oneline
And on linux / git bash / windows bash
git log $(git describe --tags --abbrev=0)..HEAD --oneline
Git Logging
git log <yourlasttag>..HEAD
and in case you don’t know your latest tag or want this to be dynamic, on windows you could do
for /f "delims=" %a in ('git describe --tags --abbrev^=0') do @set latesttag=%a
git log %latesttag%..HEAD --oneline
And on linux / git bash / windows bash