I want to search in a big repository (https://github.com/saltstack/salt) by author name ("Roman Inflianskas") and by commit name ("zypper") simultaneously.
I've tried to make this from the main view by using regex:
.*Roman Inflianskas.*zypper.*
But this doesn't work.
How can I do that?
OK, I remembered about piping to tig:
git log --author="Roman Inflianskas" | tig
@rominf tig --author="Roman Inflianskas" also works
Oh, thank you, didn't know that, that's even better.
@jonas Hmm, is this feature currently still working? Am I doing something the wrong way?
git log --author andreas
[..] // lots of output
tig --author andreas
tig: No revisions match the given arguments.
tig --version
tig version 2.5.0
ncursesw version 6.2.20200212
readline version 6.3
tig's command line parser is quite primitive, you have to use tig --author=andreas.
@koutcher Ahh, thanks for the hint. I've totally overseen this difference. tig --author=andreas is working
Most helpful comment
@rominf
tig --author="Roman Inflianskas"also works