I want to use gitk to view all commits except those by a given author. Something like the following:

gitk --author=!joe

Is this possible?

link|improve this question
Related: stackoverflow.com/questions/3448000/… – Dogbert Jun 13 '11 at 17:38
I tried the method linked here without success: stackoverflow.com/questions/3448000/… – David Hansen Jun 13 '11 at 19:03
feedback

1 Answer

I don't think there is a terribly easy way to do it--

If you have perl or something similar, you can piece together a solution:

  1. Get the list of commits you want to exclude and put them in a hash: git rev-list [refs] --author="[author pattern]"

  2. Get the list of commits you want to show: git rev-list [refs]

  3. Subtract the items in the hash from the commits you want to show

  4. Show the commits you do want to show: gitk --no-walk [output of subtraction]

You could write something in perl/python/ruby pretty easily to do 1-3, and then just do

gitk --no-walk $(drop-author.pl [refs] [author-pattern])

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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