I want to use git log to show all commits that do not match a given pattern. I know I can use the following to show all commits that do match a pattern:
git log
git log --pretty --stat | grep -v "bumped to version"