In the TortoiseSVN log, what regexp can I use to search for entries *not* by a particular author?

雨燕双飞 提交于 2019-12-08 03:06:35

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!