问题
I'm looking at the log messages for a particular branch in TortoiseSVN. We have an automated build process which has commits regularly to the branch using the author "builder".
In the TortoiseSVN search box, you can filter by authors and you can use regular expressions... what search expression can I use to show all the log messages not committed by author "builder"? Is it possible?
回答1:
add !(builder) to the filter box
kindness,
dan
回答2:
As agileguy already mentioned, the string "!(builder)" will work.
But as for an explanation:
- the '!' if it's the first char of the filter string will negate the filter
- the '()' would have the regex put the search/filter string 'builder' into a regex group. Since that's not really necessary, you could also just use "!builder" instead of "!(builder)" as the filter string.
来源:https://stackoverflow.com/questions/1367715/in-the-tortoisesvn-log-what-regexp-can-i-use-to-search-for-entries-not-by-a-p