I looking for a way to query the git log to list the number of edited (added, updated, deleted) files where the commit message matches a specific entry. I have started with this command....
git shortlog --grep="searchtopic"
1) How do I specify the grep searchtopic to be case insensitive (grepping SEARCHTOPIC, searchtopic and Searchtopic) and 2) also apply the the Commit stats: files changed, lines added, lines deleted (total) summary ?