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?
|
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? | |||||
feedback
|
|
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:
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]) | ||||
|
feedback
|