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.
我使用sharpSVN,我需要两件事:1)我需要获得带有特定日志消息的修订2)当我提交修订时,我想显示每个文件,即提交。我发现一个事件正在提交,但我不知道它是如何工作的(提交并获得特定的修订版)
Subversion 没有内置的日志消息搜索功能,因此您需要遍历所有修订版才能找到答案。
(您可以在路径上调用 SvnClient.Log()。在 args 对象上,将 .Retrieve* 设置为 false 以获取您不需要的所有内容,并仅将 svn:log 放入 RetrieveProperties 以获得最佳性能。但没有什么比本地缓存更好)