Answer by foreignmeloman for Get commit list between tags in git
Consider also this:git range-diff tagA...tagBSource: https://git-scm.com/docs/git-range-diff
View ArticleAnswer by Balu Ertl for Get commit list between tags in git
If your team uses descriptive commit messages (eg. "Ticket #12345 - Update dependencies") on this project, then generating changelog since the latest tag can de done like this:git log --no-merges...
View ArticleAnswer by lual for Get commit list between tags in git
To style the output to your preferred pretty format, see the man page for git-log.Example:git log --pretty=format:"%h; author: %cn; date: %ci; subject:%s" tagA...tagB
View ArticleAnswer by hidro for Get commit list between tags in git
To compare between latest commit of current branch and a tag:git log --pretty=oneline HEAD...tag
View ArticleAnswer by starsinmypockets for Get commit list between tags in git
FYI:git log tagA...tagBprovides standard log output in a range.
View ArticleAnswer by manojlds for Get commit list between tags in git
git log --pretty=oneline tagA...tagB (i.e. three dots)If you just wanted commits reachable from tagB but not tagA:git log --pretty=oneline tagA..tagB (i.e. two dots) orgit log --pretty=oneline ^tagA tagB
View ArticleAnswer by Ben Stiglitz for Get commit list between tags in git
git log takes a range of commits as an argument:git log --pretty=[your_choice] tag1..tag2See the man page for git rev-parse for more info.
View ArticleGet commit list between tags in git
If I've a git repository with tags representing the versions of the releases. How can I get the list of the commits between two tags (with a pretty format if is possible) ?
View Article