使用TFS自动捕获谁写了代码?

发布于 2024-11-16 03:48:45 字数 159 浏览 1 评论 0 原文

假设我有一个对象,它在项目中保存文件名及其行号之一。我想通过使用这个对象来查找谁编写了这部分代码,当然还可以通过自动查看 TFS 来进行搜索。简而言之,我正在尝试编写一个方法来执行所有这些操作。

我想知道 TFS 在哪里保存所有这些信息?这样我就可以进行比较,

提前谢谢。

Lets assume I have an object that keep an filename and one of its row number in the project. I want to make a search by using this object to find who wrote that part of code and of course when by looking at TFS automatically. In a nutshell I am trying to write a method to do all these operations.

I wonder where TFS keeps all these information ? So I can make comparison

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

如果没有 2024-11-23 03:48:45

我想知道 TFS 将所有这些内容保存在哪里信息"

文件信息存储在 TFS_Warehouse 中的 dbo.dim 文件中。从那里,您可以检查可用的数据并构建查询以满足您的需求。

TFS 2010具有三个用于数据存储的主要数据库:

TFS_Config:这是根数据库
它包含集中式 TFS
配置数据,包括列表
TFS 中存在所有团队项目
服务器。

TFS_Warehouse:数据仓库
包含所有报告数据
由该服务器(场)提供服务。

TFS_*:这包含单个团队
项目收集数据。这个数据库
包含所有操作数据
团队项目集合无论
子系统。除此之外,您
将拥有 SharePoint 数据库和
报表服务器。

"I wonder where TFS keeps all this information"

File information is stored in dbo.dimfile found in TFS_Warehouse. From there, you can examine what is available in terms of data and build a query to hopefully meet your needs.

TFS 2010 has three primary databases for data storage:

TFS_Config : It’s the root database
and it contains centralized TFS
configuration data, including the list
of all team projects exist in TFS
server.

TFS_Warehouse : The data warehouse
contains all the reporting data of
served by this server (farm).

TFS_* : This contains individual team
project collection data. This database
contains all the operational data of
team project collection regardless of
subsystem. In additional to this, you
will have databases for SharePoint and
Report Server.

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