dominikbulaj
1/16/2017 - 11:41 AM

Git count commits since tag

Git count commits since tag

NOTE to exlude merges add parameter --no-merges All params available: https://git-scm.com/docs/git-rev-list

git rev-list tag..HEAD --count

OR

git rev-list tag.. --count

They mean the same thing.

(src: http://stackoverflow.com/a/20526776/1900677)