SourceSafe 报告 - 如何获取可用格式的自定义报告?

发布于 2024-08-02 21:20:32 字数 244 浏览 2 评论 0原文

我希望我只是错过了一些东西,但我真的不知道如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2024-08-09 21:20:32

您可以通过以下方式执行类似操作:

  • 右键单击​​源安全目录(项目)并选择“显示历史记录”
  • 在对话框中您可以指定日期范围
  • 在出现的历史记录对话框中按“报告”
  • 在报告对话框中选中“包括”细节”。现在您可以生成报告。

希望这对您有帮助!

You can do something like this by:

  • Right click on the source safe directory (project) and choose "Show history"
  • In the dialog you can specify a date range
  • In the history dialog that appears press "report"
  • In the report dialog check "include details". Now you can generate the report.

Hope this helps you!

风轻花落早 2024-08-09 21:20:32

使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文