This would show all commits where the author does not contain George:
git log --perl-regexp --author='^((?!George).*)$'
Developer from somewhere
This would show all commits where the author does not contain George:
git log --perl-regexp --author='^((?!George).*)$'