I am trying to count the commits by each author but like to exclude commits whos messages begin with the word TEST.. for example.
I am currently doing the following to get the list.
git shortlog -s -n --all
This brings back my counts but drilling into each authors commits shows a lot which start with TEST.. I would like to get the count without these commits included.. is this possible?