如何对一组特定变更集涉及的资源进行分组?

发布于 2025-01-07 07:14:18 字数 221 浏览 2 评论 0原文

如何查询 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 技术交流群。

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

发布评论

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

评论(1

策马西风 2025-01-14 07:14:18

我不确定如何获取 VersionToVersionFrom 所以我只是从版本 100Latest这里。您可以使用源代码管理资源管理器查看历史记录并获取 VersionFromVersionTo

以下是使用 TFS API 的代码片段。您需要添加一些对 Microsoft.TeamFoundation.* 程序集的引用才能构建它。

using (var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(CollectionAddress)))
{
    var server = tfs.GetService<VersionControlServer>();

    var changes = 
        server.QueryHistory(
          "$/Project/Main",
          VersionSpec.Latest,
          0,
          RecursionType.Full,
          "",
          VersionSpec.ParseSingleSpec("100", ""), //From ??
          VersionSpec.Latest,                     //To ??
          100,
          true,
          true)
    .Cast<Changeset>()
    .SelectMany(changeset => changeset.Changes.Select(change => change.Item.ServerItem));
}

I am not sure how to get the VersionTo and VersionFrom so I am just doing from version 100 to Latest in here. You could you Source Control Explorer to do a View History and get your VersionFrom and VersionTo.

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.

using (var tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(CollectionAddress)))
{
    var server = tfs.GetService<VersionControlServer>();

    var changes = 
        server.QueryHistory(
          "$/Project/Main",
          VersionSpec.Latest,
          0,
          RecursionType.Full,
          "",
          VersionSpec.ParseSingleSpec("100", ""), //From ??
          VersionSpec.Latest,                     //To ??
          100,
          true,
          true)
    .Cast<Changeset>()
    .SelectMany(changeset => changeset.Changes.Select(change => change.Item.ServerItem));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文