Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够在 TortoiseSVN 日志中搜索修订或错误 ID 列表。
该列表可以是任意数量的单个值或范围,例如搜索 SVN 修订版 1 到 4、或 7、或 12、或 18 到 25 ......
我不想寻找 1 到 25 的范围,其中包括我不感兴趣的修订。
我希望定义一个 'bugtraq:logregex' 参数搜索字符串值来完成此操作。
请对此提出任何建议,将不胜感激。
谢谢
缺口
您可以使用svn log多个r参数,如下所示:
svn log
r
svn log -r 1:4 -r 7 -r 12 -r 18:25