I tried to make a TortoiseGit report for the commit history, I did this to exclude 2 users from the logs, I did this for one with:
^(.(?!username))*$
But I need to exclude the additional user. How to filter 2 lines?
I already tried:
^(.(?!username|username1))*$
and
^(.(?!username))*$|^(.(?!username1))*$
ps. Only this filter format works for TortoiseGit
source
share