SourceSafe 报告 - 如何获取可用格式的自定义报告?
我希望我只是错过了一些东西,但我真的不知道如何从 SourceSafe 中获取我想要的报告。
我所需要的只是一份特定日期范围内的签到报告和相应的评论。例如,我可以看到谁在过去一个月签到了什么以及他们对签到说了些什么。
我不认为这个要求太多,但可能是......我见过一些第三方 VSS 报告工具,但其中大多数似乎只支持 v6,而我们使用的是 v8,这对我来说可能是 v8 有更多我找不到的报告选项!
有人可以提供帮助吗?谢谢。
I'm hoping that i'm simply missing something, but I really can't see how to get the report I want out of SourceSafe.
All I need is a report of the check-ins and corresponding comments for a particular date range. So, for example, I can see who has checked in what in the past month and what they said about the check-in.
I wouldn't imagine it would be too much to ask but it possibly is... I've seen a couple of 3rd party VSS reporting tools about but most of these seem to only support up to v6 and we're on v8, which suggests to me that possibly v8 has more reporting options that I simply can't find!
Can anyone lend any assistance? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过以下方式执行类似操作:
希望这对您有帮助!
You can do something like this by:
Hope this helps you!
使用 Visual Studio 正则表达式的部分解决方案:
1RST PASS
vs2005 匹配每行开头 20 个字符。
查找内容:{^...................} .*$
替换您找到的内容,并截断每行的其余部分。
替换为:\1
2ND PASS
多行匹配和替换
查找内容:(\n:b)
通过连接所有以空格开头的行来替换,并删除空格
替换为:留空
A partial solution using Visual Studio Regular Expressions:
1RST PASS
vs2005 matches 20 characters at begining of each line.
Find what:{^....................} .*$
replaces what you found, and truncates the rest of each line.
Replace with:\1
2ND PASS
multi-line matching and replacing
Find what: (\n:b)
replace by joining all lines that start with a blank, and remove the blank
Replace with: LEAVE BLANK