vote up 0 vote down star

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?

flag

78% accept rate

2 Answers

vote up 3 vote down check

add !(builder) to the filter box

kindness,

dan

link|flag
Excellent, you're a genius! – Rick Sep 2 at 13:55
vote up 2 vote down

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.
link|flag
Good point, well made :) A little explanation would not have gone amiss! – Daniel Elliott Sep 2 at 19:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.