如何获取所有“更改集”的列表TFS 中的用户?
我只想获取 TFS 中用户的所有更改集的列表。我只需要更改集的 ID,以及作为该更改集的一部分签入的所有项目的链接。
我怎样才能做到这一点?
I just want to get the list of all change sets of a user in TFS. I want only the id of the change set, and a link to all items which are being checked in as part of that change set.
How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
除了 Richard 提供的选项之外,您还可以使用“Changesets”选项在 VS 中执行此操作:
也可以通过 API 来完成。如果您有兴趣,我可以提供一个简短的片段。
Besides option presented by Richard, you can also do that from within VS using the "Changesets" option:
It's also possible to do it via the API. I can provide a short snippet, if you're interested.
对于 Visual Studio 2013
For Visual Studio 2013
tf hist- /user:name
将按用户过滤历史记录,因此这可用于获取用户的完整更改集,从中可以提取更改集编号。tf hist ‹item› /user:name
will filter the history by user, so this could be used to get a complete set of changes for a user, from which the changeset numbers can be extracted.我找到了一个迂回的方法。
您可以打开 TFS 任务,并将变更集链接到该任务。您可以在此处使用搜索参数浏览变更集。
我不知道为什么这是唯一可用此功能的地方,但至少它在那里。
I found a round about way.
You can open a TFS task, and link a Changeset to the task. There you can browse for a changeset using search parameters.
I don't know why this is the only place where this functionality is available, but at least it's there.