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) ?
git log --pretty=oneline tagA...tagB (i.e. three dots)
git log --pretty=oneline tagA...tagB
If you just wanted commits reachable from tagB but not tagA:
git log --pretty=oneline tagA..tagB (i.e. two dots)
git log --pretty=oneline tagA..tagB
or
git log --pretty=oneline ^tagA tagB
2.1m questions
2.1m answers
60 comments
57.0k users