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
get a list of all commits containing your result, then filter out their hashes.
git log --format=oneline | grep -v `git log --grep="bumped to version" --format="%h"`