Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When using 'git log' how can I filter by user so that I see only commits from that user?

share|improve this question
11  
I totally appreciate where you are coming from but if a user doesn't know or think of man git-log that doesn't make it a bad or invalid question. I googled and searched StackOverflow before I posted the question. – markdorison Nov 23 '10 at 19:54
18  
git's functionality is sprawling and the manpages are very long -- my version of git's git-log manpage is over 1200 lines. It's not unreasonable to resort to stackoverflow. – Russell Silva Nov 23 '10 at 21:30
10  
Also, there is no restriction on stackoverflow that answers that can be found on Google are prohibited or even discouraged. – Russell Silva Nov 23 '10 at 21:31

4 Answers

up vote 180 down vote accepted

This works for both git log and gitk - the 2 most common ways of viewing history. You don't need to use the whole name

git log --author="Jon"

will match a commit made by "Jonathan Smith"

git log --author=Jon

and

git log --author=Smith

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:

git log --author="\(Adam\)\|\(Jon\)"

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:

git log --format='%H %an' | 
  grep -v Adam | 
  cut -d ' ' -f1 | 
  xargs -n1 git log -1

If you want to exclude commits commited (but not necessarily authored) by Adam, replace %an with %cn. More details about this are in my blog post here: http://dymitruk.com/blog/2012/07/18/filtering-by-author-name/

share|improve this answer
2  
Is there a way to do the opposite? Say - I want to see all commits except for Jon's. – Ian Robinson Apr 28 '11 at 18:58
2  
@Ian as for git help log "Jon" is a regular expression so it should be pretty easy – sumek May 11 '11 at 16:12
1  
git log --format=%an | egrep -v 'Jon*' | xargs -n 1 git log -1 – Adam Dymitruk May 24 '11 at 4:45
oops.. forget that. but you get the gist. get a "not in" functionality out of piping through egrep -v and other tricks on the command line. – Adam Dymitruk May 24 '11 at 5:08
1  
Also works for gitk! Awesome, thanks! – Kyle Macey Apr 19 '12 at 19:34
show 1 more comment
git log --author="that user"
share|improve this answer
git help log

gives you the manpage of git log. Search for "author" there.

git log --author="username"

as already suggested.

share|improve this answer

You can even abbreviate this a bit by simply using part of the user name:

git log --author=mr  #if you're looking for mrfoobar's commits
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.