tags:

views:

33

answers:

2

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

+1  A: 
git log --oneline | grep PATTERN
czchen
+5  A: 
--grep=<pattern>
    Limit the commits output to ones with log message that matches the 
    specified pattern (regular expression).

--git help log

hobbs