How can I invert
git log --author=me
to get all commits which are not from me?
Edit: I can not use Perl OS: Windows 7, Git Version: 1.9.4
How can I invert
git log --author=me
to get all commits which are not from me?
Edit: I can not use Perl OS: Windows 7, Git Version: 1.9.4
as you can see in this anwser, you could use a perl regex:
git log --perl-regexp --author='^((?!excluded-author-regex).*)$'
EDIT a hack if you cannot use perl:
git log --oneline --pretty=format:"%h %an %s" | grep -v "Author Name"