如何对一组特定变更集涉及的资源进行分组?
如何查询 tfs 历史记录以获得以下结果:将一组变更集中涉及的资源分组?
我想要做的是了解哪些文件在更改集中发生了更改例如最近 2 个月。
我尝试了 TFS Explorer,但我只能从单个变更集中获取详细信息。 TFS Sidekicks 也是如此。我在命令行上没有运气,甚至没有直接连接到数据库。
有人知道获得该结果的聪明方法吗?
How can I query the tfs history to have this result: group the resources involved in a set of changesets?
What I'm trying to do is understanding which files changed in the last 2 months for example.
I tried on TFS Explorer, but I can obtain the details just from a single changeset. It's the same for TFS Sidekicks. I had no luck with the command line and not even connecting directly to the database.
Does someone knows a smart way to get that result?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定如何获取
VersionTo
和VersionFrom
所以我只是从版本100
到Latest
这里。您可以使用源代码管理资源管理器查看历史记录并获取VersionFrom
和VersionTo
。以下是使用 TFS API 的代码片段。您需要添加一些对
Microsoft.TeamFoundation.*
程序集的引用才能构建它。I am not sure how to get the
VersionTo
andVersionFrom
so I am just doing from version100
toLatest
in here. You could you Source Control Explorer to do a View History and get yourVersionFrom
andVersionTo
.Here's a snippet of code that uses the TFS API. You will need to add some references to
Microsoft.TeamFoundation.*
assemblies to get it to build.