[git] How to search in commit messages using command line?

Possible Duplicate:
How to search through all commits in the repository?

Is there a way to search through commit headers using the command line?

This question is related to git console

The answer is


git log --grep=<pattern>
    Limit the commits output to ones with log message that matches the 
    specified pattern (regular expression).

--git help log


git log --oneline | grep PATTERN