How to get a list of all "Change sets" of a user in TFS?

I just want to get a list of all the user change sets in TFS. I want only the identifier of the change set and a link to all the elements that are checked as part of this change set.

How can i do this?

+47
tfs
Sep 29 '11 at 7:19
source share
4 answers

In addition to the option presented by Richard, you can also do this from VS using the "Changes" option:

enter image description here

This can also be done using the API. I can provide a short snippet if you're interested.

+70
Sep 29 2018-11-11T00:
source share

For Visual Studio 2013

  • Open source explorer
  • Right-click the repository you want to find
  • Select Find => Find Changes.
  • The "Find Changes" window opens, in which you can filter by user name.

TFS repository context menu

+15
Jun 05 '14 at 18:21
source share

tf hist โ€นitemโ€บ /user:name will filter the history by the user, so you can use it to get the full set of changes for the user, from which you can extract the numbers of the change sets.

+11
Sep 29 '11 at 7:30
source share

I found a round.

You can open a TFS task and associate a set of changes with the task. There you can view a set of changes using the search options.

I do not know why this is the only place where this function is available, but at least there.

0
Mar 06 '14 at 11:13
source share



All Articles