Is there an easy way or command to get all git commits up to a specific tag to generate an automatic changelog for a project? I always tag my git repos with a version number lik
Just use the tag name as a commit specifier: git log --oneline --decorate v0.1.0
git log --oneline --decorate v0.1.0