Last Updated: February 25, 2016
·
514
· ccurtisj

Search git commit history

So, you want to find a particular commit based on text in the commit message? Here ya go:

git log --grep="string here"

or

git log --grep=regex

thanks stack overflow