When using 'git log' how can I filter by user so that I see only commits from that user?
|
|
This works for both
will match a commit made by "Jonathan Smith"
and
would also work. The quotes are optional if you don't need any spaces. You can also easily match on multiple authors as regex is the underlying mechanism for this filter. So to list commits by Jonathan or Adam, you can do this:
However it's tricky to exclude commits by a particular author or set of authors using regular expressions as noted here: Regular expression to match string not containing a word? Using bash and piping you can exclude commits authored by Adam by:
If you want to exclude commits commited (but not necessarily authored) by Adam, replace |
|||||||||||||||||||
|
gives you the manpage of git log. Search for "author" there.
as already suggested. |
|||
|
|
|
You can even abbreviate this a bit by simply using part of the user name:
|
|||
|
|